flutter_workmanager
flutter_workmanager copied to clipboard
A Flutter plugin which allows you to execute code in the background on Android and iOS.
- [x] I have read the [README](https://github.com/vrtdev/flutter_workmanager/blob/master/README.md) - [x] I have done the setup for [iOS](https://github.com/vrtdev/flutter_workmanager/blob/master/IOS_SETUP.md) - [x] I have ran the sample app and it does not work there...
✅ I have read the README ✅ I have done the setup for Android ✅ I have done the setup for iOS 0.4.0 Please help me solve this. I already...
- [x] I have read the [README](https://github.com/vrtdev/flutter_workmanager/blob/master/README.md) - [x] I have done the setup for [Android](https://github.com/vrtdev/flutter_workmanager/blob/master/ANDROID_SETUP.md) - [x] I have done the setup for [iOS](https://github.com/vrtdev/flutter_workmanager/blob/master/IOS_SETUP.md) - [x] I have ran...
- [x] I have read the [README](https://github.com/vrtdev/flutter_workmanager/blob/master/README.md) - [x] I have done the setup for [Android](https://github.com/vrtdev/flutter_workmanager/blob/master/ANDROID_SETUP.md) - [x] I have done the setup for [iOS](https://github.com/vrtdev/flutter_workmanager/blob/master/IOS_SETUP.md) - [x] I have ran...
- [x] I have read the [README](https://github.com/vrtdev/flutter_workmanager/blob/master/README.md) - [x] I have done the setup for [Android](https://github.com/vrtdev/flutter_workmanager/blob/master/ANDROID_SETUP.md) - [x] I have done the setup for [iOS](https://github.com/vrtdev/flutter_workmanager/blob/master/IOS_SETUP.md) - [x] I have ran...
Add observer for workmanager status (start, done, failure, progress)
Background services stop at random times and can only run normally for three to five days. The test results of multiple Android phones are basically the same. Android permissions enable...
DEBUG CONSOLE: I/WM-WorkerWrapper(10976): Worker result SUCCESS for Work [ id=9fe5a666-2857-4939-9b6a-1d4d58cc9b01, tags={ be.tramckrijte.workmanager.BackgroundWorker } ] E/BasicMessageChannel#(10976): Parameter messenger must not be null. D/AndroidRuntime(10976): Shutting down VM E/AndroidRuntime(10976): FATAL EXCEPTION: main E/AndroidRuntime(10976):...
The background task is executing as expected as long as the app is open, however, when I close the app (not minimize). The background task finishes too. Sample code: ```...
WorkManager on Android allows to run tasks e.g. when folder contents changed: `Constraints.Builder().addContentUriTrigger(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, true)` Currently, this is not possible in flutter workmanager. It would be great to also provide this...