flutter_foreground_task 3.5.3 flutter_foreground_task: ^3.5.3 copied to clipboard
This plugin is used to implement a foreground service on the Android platform.
3.5.3 #
- Upgrade shared_preferences: ^2.0.11
3.5.2 #
- [iOS] Fixed an issue where notifications not related to the service were removed.
- [iOS] Improved compatibility with other plugins that use notifications.
- Additional settings are required, so please check the Readme-Getting started.
3.5.1 #
- Add process exit code to prevent memory leak.
- Fix dart formatting issues.
3.5.0 #
- Upgrade shared_preferences: ^2.0.9
- Can now add action buttons to Android notification.
3.4.1 #
- [Bug] Fixed an issue where lockMode(wakeLock, wifiLock) was not properly released when the service was forcibly shutdown.
- [Bug] Fixed an issue where foreground service notification UX was delayed on Android version 12.
3.4.0 #
- Add wakeLock to keep the CPU active in the background.
- Need to add
android.permission.WAKE_LOCK
permission toAndroidManifest.xml
file.
- Need to add
- Add wifiLock to keep the Wi-Fi radio awake in the background.
- Enable or disable can be set with
allowWifiLock
ofForegroundTaskOptions
class.
- Enable or disable can be set with
3.3.0 #
- Add
requestIgnoreBatteryOptimization
function. - Change onWillStart type from
ValueGetter
toAsyncValueGetter
.
3.2.3 #
- [Bug] Fixed an issue where IllegalArgumentException was thrown when starting the service on Android version 11 and higher.
- Bump Android minSdkVersion to 23.
- Bump Android compileSdkVersion to 31.
3.2.2 #
- [Bug] Fixed an issue where RemoteServiceException occurred intermittently.
3.2.1 #
- [iOS] Fixed an issue where all data stored in
UserDefaults.standard
was removed when the stopService function was called.
3.2.0 #
- Add
restartService
function. You can now restart the service to get the newReceivePort
. - Improve service-related function code. A return value has been added to check if the function was properly requested.
3.1.0 #
- Upgrade shared_preferences: ^2.0.8
- Add
required keyword
to parameters of saveData func. - Add
isSticky
notification option for Android.
3.0.0 #
- [BREAKING] The way you start the foreground service and register tasks has changed. Check readme for more information.
- [BREAKING] Change function name from
start
tostartService
. - [BREAKING] Change function name from
update
toupdateService
. - [BREAKING] Change function name from
stop
tostopService
. - [BREAKING] Change function name from
isRunningTask
toisRunningService
. - Added functions for data management.
- Fixed an issue where notifications were not removed when the service was stopped.
- Fixed incorrect documentation.
2.2.1 #
- Fixed playSound option not working properly in the background.
2.2.0 #
- Implement background task on iOS platform. Please check Readme as setup is required.
- Implement a service restart function to deal with unexpected errors.
- Remove
notification_options.dart
. - Add
android_notification_options.dart
. - Add
ios_notification_options.dart
. - Change the
playSound
default value fromtrue
tofalse
.
2.1.0 #
- Fixed duplicate call to startForegroundTask function.
- Optimize android native code.
- Add
sendPort
parameter to TaskCallback.
2.0.5+1 #
- Update README.md
2.0.5 #
- Fix
callbackHandle
type casting error.
2.0.4 #
- Add utility methods related to battery optimization.
- Add
showWhen
option. - Add
visibility
option. - Migrate example to null safety.
2.0.3 #
- Add
autoRunOnBoot
field toForegroundTaskOptions
. Check the readme for more details.
2.0.2 #
- Add
onDestroy
to clean up used resources in callback functions.
2.0.1 #
- Change the notification icon setting method.
- Improved the code so that the notification icon is displayed properly even when using the resource shrinker.
2.0.0 #
- [BREAKING] Remove singleton
instance
ofFlutterForegroundTask
. - [BREAKING]
TaskCallback
return type changed fromvoid
toFuture<void>
. - [BREAKING] All functions of
FlutterForegroundTask
are applied as static. - [BREAKING] The way foreground task are registered has changed. See the readme for details.
- Add
printDevLog
option. - Update README.md
- Update Example.
1.0.9 #
- Add
icon
field toNotificationOptions
. - Change the model's
toMap
function name totoJson
.
1.0.8 #
- Add
FlutterForegroundTask.instance.update()
function. - Update README.md
1.0.7 #
- Fix incorrect comments and documents.
- Add
enableVibration
notification options. - Add
playSound
notification options.
1.0.5 #
- Fix an issue where
RemoteServiceException
occurs.
1.0.4 #
- Add
WillStartForegroundTask
widget.
1.0.3 #
- Fix incorrect comments and documents.
- Add
channelImportance
notification options. - Add
priority
notification options.
1.0.1 #
- Add
WithForegroundTask
widget.
1.0.0 #
- Initial release.