jafitz26

Results 4 comments of jafitz26

There may be a better way to do this, but my solution to popping the widget and relaunching it was to use two Future.delayed() in onUnityCreated. So something like: widget.isInit...

Sure, here is the code within the context of the two classes I'm using: ``` class FlutterPage extends StatefulWidget { const FlutterPage({Key? key}) : super(key: key); @override _FlutterPageState createState() =>...

Any updates on this? I have the same issue for Android 12 only, but removing --obfuscate does not solve it. Everything runs perfectly on Android 10.

Found the solution with this thread: https://github.com/fluttercommunity/flutter_workmanager/issues/189 Replace ` WorkmanagerPlugin.registerTask(withIdentifier: "com.bundle.app.1") WorkmanagerPlugin.registerTask(withIdentifier: "com.bundle.app.2")` with: ` WorkmanagerPlugin.register(with: self.registrar(forPlugin: "com.bundleId.workmanager.WorkmanagerPlugin")!)`