You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After updating Flutter to version 3.28, the flutter_background_service_android library (version 6.2.7) fails to build due to a breaking change in the Flutter API. Specifically, the issue is related to the use of the now-removed Registrar class from the io.flutter.plugin.common.PluginRegistry package.
Here is the error message:
error: cannot find symbol
import io.flutter.plugin.common.PluginRegistry.Registrar;
^ symbol: class Registrar
location: interface PluginRegistry
This issue occurs because the Registrar API has been removed in recent versions of Flutter, and the library needs to be updated to use the FlutterPlugin API instead.
The text was updated successfully, but these errors were encountered:
After updating Flutter to version 3.28, the flutter_background_service_android library (version 6.2.7) fails to build due to a breaking change in the Flutter API. Specifically, the issue is related to the use of the now-removed Registrar class from the io.flutter.plugin.common.PluginRegistry package.
Here is the error message:
error: cannot find symbol
import io.flutter.plugin.common.PluginRegistry.Registrar;
^ symbol: class Registrar
location: interface PluginRegistry
This issue occurs because the Registrar API has been removed in recent versions of Flutter, and the library needs to be updated to use the FlutterPlugin API instead.
The text was updated successfully, but these errors were encountered: