flutter_foreground_task icon indicating copy to clipboard operation
flutter_foreground_task copied to clipboard

This plugin is used to implement a foreground service on the Android platform.

Results 81 flutter_foreground_task issues
Sort by recently updated
recently updated
newest added

I added these permissions // App is asking about this permission await FlutterForegroundTask.requestIgnoreBatteryOptimization(); also I put these channelImportance: NotificationChannelImportance.HIGH, isSticky: true, priority: NotificationPriority.HIGH, but when my device is not charging...

checking

thank you @lukkob I was not aware of this problem until now. I'm not familiar with `UserDefaults(suiteName:)`, so I'll check the official documentation and merge the branch. Thank you again...

check

I am using the Foreground task to keep my app alive when it's in the background. However, after some time which could be for 15 mins or 30 mins or...

Hello, when I declare in Manifest `android:process=":myProcessName"` for the `com.pravera.flutter_foreground_task.service.ForegroundService` like this: ``` ``` It works fine only for the first time. By second start I get the error that...

I'd like to ask for some advice rather than raising an issue. In my application I'm getting a lot of info from a server and based on that I build...

We have implemented a pedometer package using isar database and flutter foreground task to allow a step counter to persist even if the user kills the app or hasn't opened...

I am trying to make an app that uses [flutter_foreground_task](https://pub.dev/packages/flutter_foreground_task) to scan for bluetooth devices while it is in the background with the help of [flutter_blue](https://pub.dev/packages/flutter_blue). Is this possible? When...

i'm following the example and the saveData and getData don't work . can i get help ㅠㅠ

I am having an issue with onEvent(). I have given interval and want to execute a specific code in that interval. However the code I want to execute contains variables...