Releases: MaikuB/flutter_local_notifications
Releases · MaikuB/flutter_local_notifications
flutter_local_notifications-v9.8.0+1
- Added more details to 9.8.0 changelog entry to mention that apps will need to change
compileSdkVersion
to 33 and also updated readme to mention this
flutter_local_notifications-v9.8.0
- [Android] added
requestPermission
method to theAndroidFlutterLocalNotificationsPlugin
class. This make use of the new feature added to Android 13 where an app can request permissions to show notifications. As the plugin's APIs don't have breaking changes, this is released a minor release. It does however, require the Android 13 SDK to be install installed and for apps to change thecompileSdkVersion
in their app'sbuild.gradle
to 33 as the plugin'scompileSdkVersion
is now 33. Only apps targeting Android 13 can request the permission as well. The latter can be done by updating thetargetSdkVersion
in an app'sbuild.gradle
file to33
. Thanks to the PR from Bartek Pacia. Note: the ability to request the permission as part of callinginitialize
will be added later on
flutter_local_notifications-v10.0.0-dev.20
- Includes changes from 9.8.0
- [Android] Breaking change the following error codes included in
PlatformException
s that can occur on Android have been updated GET_ACTIVE_NOTIFICATION_MESSAGING_STYLE_ERROR_CODE
->getActiveNotificationMessagingStyle
PERMISSION_REQUEST_IN_PROGRESS
->permissionRequestInProgress
flutter_local_notifications-v10.0.0-dev.19
- Includes changes from 9.7.1 that fixes a crash around calling
getNotificationAppLaunchDetails
on Android
flutter_local_notifications-v10.0.0-dev.18
- [Android] added null checks around notification action inputs
flutter_local_notifications-v9.7.0
- [Android] added support to specify notification count via the
number
property that has been added to theAndroidNotificationDetails
class. Thanks to the PR from Katsuya Kato - Updated readme so that link to icon design guidance points to the archived version as the original link is now returning 404 not found. Thanks to the PR from Zaldy Pagaduan Jr.
flutter_local_notifications-v10.0.0-dev.17
- Includes changes from 9.7.0
flutter_local_notifications-v9.6.1
- [macOS] fixed issue 1623 where calling
zonedSchedule
withmatchDateTimeComponents
set todayOfMonthAndTime
ordateAndTime
led to an error
flutter_local_notifications-v10.0.0-dev.16
- Includes changes from 9.6.1
- [Android] Breaking change the
category
of theAndroidNotificationDetails
now requires an instance of the newly addedAndroidNotificationCategory
class instead of a string. This was to improve the discoverability of the APIs and improve the semantics as the category can specified in a similar fashion to using an enum value - [Linux] Breaking change the linux notification categories defined by
LinuxNotificationCategory
no longer has factory constructors but has static constant fields instead to make the semantics more similar to access enum values
flutter_local_notifications-v9.6.0
- [Linux] Bumped dependency on
flutter_local_notifications_linux
to^0.5.0+1
where support for icons to be specified via a file path was added by Yaroslav Pronin