Skip to content

Releases: MaikuB/flutter_local_notifications

flutter_local_notifications-v1.4.4+5

01 Oct 20:43
76b8791
Compare
Choose a tag to compare
  • Updated the platform package version range constraint so that 3.x null safety releases could be used (currently used in Flutter 1.22 stable)

flutter_local_notifications-v1.5.0-beta.10

27 Sep 01:20
05801e1
Compare
Choose a tag to compare
  • [Android] Bumped compile SDK to 30 (Android 11)
  • [Android] Added ability to specify shortcut id that can be used for conversations. See https://developer.android.com/guide/topics/ui/conversations for more info. Note the plugin doesn't provide the ability to publish shortcuts so developers will likely need to look into writing their own code to do so and save the shortcut id so that it can be linked to notifications
  • Readme now has a table of contents. Thanks to the PR from Ascênio

flutter_local_notifications-v1.5.0-beta.9

12 Sep 11:13
9d1382e
Compare
Choose a tag to compare
  • [Android] Fix issue 780 around a null pointer exception related to specifying a full screen intent. Thanks to the PR from Sebastian Faust

flutter_local_notifications-v1.5.0-beta.8

24 Aug 13:10
ce870cf
Compare
Choose a tag to compare
  • [Android] Fix null pointer exception with trying to access intent when activity is null. Thanks to the PR from Jonas Bornold

flutter_local_notifications-v1.4.4+4

20 Aug 04:52
8fe0bd6
Compare
Choose a tag to compare
  • [Android] Fix issue 759 by guarding code on getting the intent from the activity in case there isn't an activity that could cause initialize() and getNotificationAppLaunchDetails() to fail when called from the background

flutter_local_notifications-v1.5.0-beta.7

20 Aug 05:28
5cf1195
Compare
Choose a tag to compare
  • [Android] Added support for full-screen notifications via the fullScreenIntent argument that has been added to the AndroidNotificationDetails class. Thanks to the PR from Nadav Fima

flutter_local_notifications-v1.4.4+3

14 Aug 22:55
8c41860
Compare
Choose a tag to compare
  • [Android] Fix issue 751 where the onSelectNotification callback could be called again after the user has tapped on a notification, sent the application to the background and returned to the app via the Recents screen. This issue could have previously called getNotificationAppLaunchDetails() to mistakenly report that a notification launched the app when it's called again as part of the application being resumed

flutter_local_notifications-v1.5.0-beta.6

12 Jul 06:13
fc55a16
Compare
Choose a tag to compare
  • [Android] Added the getActiveNotifications() method to the AndroidFlutterLocalNotificationsPlugin class thanks to the PR from Vincent Kammerer. This can be used to query the active notifications and is only applicable to Android 6.0 or newer
  • Updated and fixed wording in API docs

flutter_local_notifications-v1.4.4+2

07 Jul 10:48
dbe1e65
Compare
Choose a tag to compare
  • [Android] Updated readme and plugin to fix issue 689 where plugin needs to ensure notifications stay scheduled after an application update
  • Removed e2e dependency

flutter_local_notifications-v1.5.0-beta.5

07 Jul 11:17
Compare
Choose a tag to compare
  • [Android] Fix initialisation of ThreeTen Android Backport library when notifications are being rescheduled
  • Removed e2e dependency from merging in changes from 1.4.4+2 release