Skip to content

Releases: MaikuB/flutter_local_notifications

flutter_local_notifications-v9.8.0+1

17 Aug 15:13
Compare
Choose a tag to compare
  • 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

17 Aug 11:51
52af054
Compare
Choose a tag to compare
  • [Android] added requestPermission method to the AndroidFlutterLocalNotificationsPlugin 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 the compileSdkVersion in their app's build.gradle to 33 as the plugin's compileSdkVersion is now 33. Only apps targeting Android 13 can request the permission as well. The latter can be done by updating the targetSdkVersion in an app's build.gradle file to 33. Thanks to the PR from Bartek Pacia. Note: the ability to request the permission as part of calling initialize will be added later on

flutter_local_notifications-v10.0.0-dev.20

17 Aug 12:45
Compare
Choose a tag to compare
  • Includes changes from 9.8.0
  • [Android] Breaking change the following error codes included in PlatformExceptions 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

17 Aug 12:44
Compare
Choose a tag to compare
  • Includes changes from 9.7.1 that fixes a crash around calling getNotificationAppLaunchDetails on Android

flutter_local_notifications-v10.0.0-dev.18

31 Jul 12:38
Compare
Choose a tag to compare
  • [Android] added null checks around notification action inputs

flutter_local_notifications-v9.7.0

10 Jul 06:11
Compare
Choose a tag to compare
  • [Android] added support to specify notification count via the number property that has been added to the AndroidNotificationDetails 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

10 Jul 10:20
Compare
Choose a tag to compare
  • Includes changes from 9.7.0

flutter_local_notifications-v9.6.1

10 Jul 06:10
987ec0c
Compare
Choose a tag to compare
  • [macOS] fixed issue 1623 where calling zonedSchedule with matchDateTimeComponents set to dayOfMonthAndTime or dateAndTime led to an error

flutter_local_notifications-v10.0.0-dev.16

16 Jun 03:10
Compare
Choose a tag to compare
  • Includes changes from 9.6.1
  • [Android] Breaking change the category of the AndroidNotificationDetails now requires an instance of the newly added AndroidNotificationCategory 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

04 Jun 06:20
Compare
Choose a tag to compare
  • [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