https://github.com/julianassmann/flutter_background
A flutter plugin to keep apps running in the background via foreground services. Android only.
https://github.com/julianassmann/flutter_background
android background-android background-jobs flutter package
Last synced: 1 day ago
JSON representation
A flutter plugin to keep apps running in the background via foreground services. Android only.
- Host: GitHub
- URL: https://github.com/julianassmann/flutter_background
- Owner: JulianAssmann
- License: mit
- Created: 2020-11-10T15:19:22.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-08-28T10:07:43.000Z (about 1 year ago)
- Last Synced: 2024-12-18T09:37:32.133Z (10 months ago)
- Topics: android, background-android, background-jobs, flutter, package
- Language: Dart
- Homepage: https://pub.dev/packages/flutter_background
- Size: 5.06 MB
- Stars: 89
- Watchers: 4
- Forks: 52
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# flutter_background
[](https://www.buymeacoffee.com/julianassmann)
A plugin to keep flutter apps running in the background. Currently only works with Android.
It achieves this functionality by running an [Android foreground service](https://developer.android.com/guide/components/foreground-services) in combination with a [partial wake lock](https://developer.android.com/training/scheduling/wakelock#cpu) and [disabling battery optimizations](https://developer.android.com/training/monitoring-device-state/doze-standby#support_for_other_use_cases) in order to keep the flutter isolate running.
**Note:** This plugin currently only works with Android.
PRs for iOS are very welcome, although I am not sure if a similar effect can be achieved with iOS at all.## Getting started
To use this plugin, add `flutter_background` as a [dependency in your `pubspec.yaml` file](https://pub.dev/packages/flutter_background/install).
### Android
Add the following permissions to the `AndroidManifest.xml`:
```xml
...
```
**Important**: You must specify the appropriate `foregroundServiceType` for your use case. See the [Android docs](https://developer.android.com/about/versions/14/changes/fgs-types-required) and the [list of available service typs](https://developer.android.com/develop/background-work/services/fg-service-types) for more information on foreground service types.
### Other platforms
Android is the only supported platform. There are currently no plans to extend support for other platforms, but feel free to change that by contributing to this plugin.
## Usage
Import `flutter_background.dart`:
```dart
import 'package:flutter_background/flutter_background.dart';
```### Initializing plugin and handling permissions
Before you can use this plugin, you need to initialize it by calling `FlutterBackground.initialize(...)`:
```dart
final androidConfig = FlutterBackgroundAndroidConfig(
notificationTitle: "flutter_background example app",
notificationText: "Background notification for keeping the example app running in the background",
notificationImportance: AndroidNotificationImportance.normal,
notificationIcon: AndroidResource(name: 'background_icon', defType: 'drawable'), // Default is ic_launcher from folder mipmap
);
bool success = await FlutterBackground.initialize(androidConfig: androidConfig);
```This ensures all permissions are granted and requests them if necessary. It also configures the
foreground notification. The configuration above results in the foreground notification shown below when
running `FlutterBackground.enableBackgroundExecution()`.
The arguments are:
- `notificationTitle`: The title used for the foreground service notification.
- `notificationText`: The body used for the foreground service notification.
- `notificationImportance`: The importance of the foreground service notification.
- `notificationIcon`: The icon used for the foreground service notification shown in the top left corner. This must be a drawable Android Resource (see [here](https://developer.android.com/reference/android/app/Notification.Builder#setSmallIcon(int,%20int)) for more). E. g. if the icon with name "background_icon" is in the "drawable" resource folder, it should be of value `AndroidResource(name: 'background_icon', defType: 'drawable').
- `enableWifiLock`: Indicates whether or not a WifiLock is acquired when background execution is started. This allows the application to keep the Wi-Fi radio awake, even when the user has not used the device in a while (e.g. for background network communications).In this example, `background_icon` is a drawable resource in the `drawable` folders (see the example app).
For more information check out the [Android documentation for creating notification icons](https://developer.android.com/studio/write/image-asset-studio#create-notification) for more information how to create and store an icon.In order to function correctly, this plugin needs a few permissions.
`FlutterBackground.initialize(...)` will request permissions from the user if necessary.
You can call initialize more than one time, so you can call `initalize()` every time before you call `enableBackgroundExecution()` (see below).In order to notify the user about upcoming permission requests by the system, you need to know, whether or not the app already has these permissions. You can find out by calling
```dart
bool hasPermissions = await FlutterBackground.hasPermissions;
```
before calling `FlutterBackground.initialize(...)`. If the app already has all necessary permissions, no permission requests will be displayed to the user.### Run app in background
With
```dart
bool success = await FlutterBackground.enableBackgroundExecution();
```you can try to get the app running in the background. You must call `FlutterBackground.initialize()` before calling `FlutterBackground.enableBackgroundExecution()`.
With
```dart
await FlutterBackground.disableBackgroundExecution();
```you can stop the background execution of the app. You must call `FlutterBackground.initialize()` before calling `FlutterBackground.disableBackgroundExecution()`.
To check whether background execution is currently enabled, use
```dart
bool enabled = FlutterBackground.isBackgroundExecutionEnabled;
```## Example
The example is a TCP chat app: It can connect to a TCP server and send and receive messages. The user is notified about incoming messages by notifications created with the plugin [flutter_local_notifications](https://pub.dev/packages/flutter_local_notifications).
Using this plugin, the example app can maintain the TCP connection with the server, receiving messages and creating notifications for the user even when in the background.
## Maintainer
[Julian Aßmann](https://github.com/JulianAssmann)
If you experience any problems with this package, please [create an issue on Github](https://github.com/JulianAssmann/flutter_background/issues).
Pull requests are also very welcome.