sony/flutter-embedded-linux

Missing FlutterDesktopPluginRegistrarGetView() header

lhoward opened this issue · 2 comments

FlutterDesktopPluginRegistrarGetView() is missing from common/public/flutter_plugin_registrar.h, which means it's compiled with C++ instead of C linkage.

Fix will be to add

FLUTTER_EXPORT FlutterDesktopViewRef
FlutterDesktopPluginRegistrarGetView(FlutterDesktopPluginRegistrarRef registrar);

Fixed this issue. Thank you, Ihoward.