sony / flutter-embedded-linux

Embedded Linux embedding for Flutter
BSD 3-Clause "New" or "Revised" License
1.16k stars 122 forks source link

Missing FlutterDesktopPluginRegistrarGetView() header #348

Closed lhoward closed 11 months ago

lhoward commented 11 months ago

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

lhoward commented 11 months ago

Fix will be to add

FLUTTER_EXPORT FlutterDesktopViewRef
FlutterDesktopPluginRegistrarGetView(FlutterDesktopPluginRegistrarRef registrar);
HidenoriMatsubayashi commented 11 months ago

Fixed this issue. Thank you, Ihoward.