flutter_background icon indicating copy to clipboard operation
flutter_background copied to clipboard

A flutter plugin to keep apps running in the background via foreground services. Android only.

Results 32 flutter_background issues
Sort by recently updated
recently updated
newest added

**Describe the bug** After the permission are accepted the app crashes. **To Reproduce** You must include full steps to reproduce so that we can reproduce the problem. **Expected behavior** App...

bug

I am now developing application for android TV that needs background service. The following command return false when i run on android TV. The same problem doesn't exist on android...

bug
help wanted

**Describe the bug** Great package Man , but am facing an issue , my app is keeping a connection with bluetooth device in background , and that connection depends on...

bug

**Describe the solution you'd like** I know that you can have "buttons" in Android persistant notification. It would be nice to have the posibility to add such a button in...

enhancement

Great project. Was very easy to integrate into my app. The only think I'm unsure about is exactly how it affects app behaviour. As I understand it, without doing anything...

documentation

On android, add [ACTION_REQUEST_IGNORE_BATTERY_OPTIMIZATIONS](https://developer.android.com/reference/android/provider/Settings#ACTION_REQUEST_IGNORE_BATTERY_OPTIMIZATIONS) as an option to obtain excemption from battery optimizations, as declaring [REQUEST_IGNORE_BATTERY_OPTIMIZATIONS](https://developer.android.com/reference/android/Manifest.permission.html#REQUEST_IGNORE_BATTERY_OPTIMIZATIONS) might lead to a ban of the app in the Play Store, "unless the...

enhancement

**Describe the bug** Callback form an AnimationController is not executing in background mode. **To Reproduce** AnimationController? _controller; _controller = AnimationController( vsync: this, duration: Duration(seconds: 10), ); _controller!.addStatusListener((status) { switch (status)...

bug

Starting in Android 14, all foreground service must list at least one foreground service type for each service. Without listing a service type, the system will raise `SecurityException`. https://developer.android.com/about/versions/14/behavior-changes-14#fgs-types

Any reason why the 3 permissions below aren't added to the plugin's AndroidManifest.xml? Gradle is pretty good at merging manifest files when building, so there's shouldn't be any reason to...

I am not able to get the app running with the persistent notification even after running ` FlutterBackground.enableBackgroundExecution()` successfully. I am testing on Samsung A51 running android 12. [✓] Flutter...