Missing FlutterDesktopPluginRegistrarGetView() header
lhoward opened this issue · 2 comments
lhoward commented
FlutterDesktopPluginRegistrarGetView()
is missing from common/public/flutter_plugin_registrar.h
, which means it's compiled with C++ instead of C linkage.
lhoward commented
Fix will be to add
FLUTTER_EXPORT FlutterDesktopViewRef
FlutterDesktopPluginRegistrarGetView(FlutterDesktopPluginRegistrarRef registrar);
HidenoriMatsubayashi commented
Fixed this issue. Thank you, Ihoward.