android_long_task
android_long_task copied to clipboard
android long task is a flutter plugin to run dart code in an android foreground service with simplicity
serviceMain does not close but stops when the device screen is off, once you turn on the screen, the service continues to run without problems. I need the service to...
* Updates Kotlin Version from `1.3.50` to `1.7.10` * Updates Kotlin Gradle Plugin Version from `3.5.0` to `7.3.0` Closes #15
Hi, i received the following error in my Flutter 3.13.9 project: ``` The Android Gradle plugin supports only Kotlin Gradle plugin version 1.5.20 and higher. The following dependencies do not...
Hi, for future versions I think you should replace: FlutterMain.startInitialization(this) FlutterMain.ensureInitializationComplete(this, emptyArray()) by val loader = FlutterInjector.instance().flutterLoader() loader.startInitialization(this) loader.ensureInitializationComplete(this, emptyArray()) in runDartFunction. See https://stackoverflow.com/questions/56339637/is-there-a-way-to-access-flutter-resources-from-native-code
Hi, I always get flutter icon even if I replaced with my own it with flutter launcher plugin. What can I do?
I'm looking at your project to see if it can replace the unreliable WorkManager/AlarmManager for me. One of the things I need is that my foreground service will be started...
In general we can use `AppClient.getData()` from the app and see latest status. Is it possible to query the AppClient and check if the service is running? The problem is...
- Update Flutter SDK constraints to allow Flutter **3.x.x** and updated dependencies. - Add **.fvmrc** for Flutter version management to indicate that currently is tested and working with Flutter **3.27.3**...