I can configure the background service as follows:
final androidConfig = FlutterBackgroundAndroidConfig(
notificationTitle: "flutter_background example app",
notificationText: "Background notification for keeping the example app running in the background",
notificationImportance: AndroidNotificationImportance.Default,
notificationIcon: AndroidResource(name: 'background_icon', defType: 'drawable'), // Default is ic_launcher from folder mipmap
);
The title will be used in the background notification:
The title is also used in the notification settings of the app:
An app could have multiple notification channels, thus they can be named.
Feature request
Add an option, which allows to configure the name of the background notification channel as well.
State of the art
I can configure the background service as follows:
The title will be used in the background notification:
The title is also used in the notification settings of the app:
An app could have multiple notification channels, thus they can be named.
Feature request
Add an option, which allows to configure the name of the background notification channel as well.