Releases: MaikuB/flutter_local_notifications
Releases · MaikuB/flutter_local_notifications
flutter_local_notifications-v1.4.4+5
- 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
- [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
- [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
- [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
- [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()
andgetNotificationAppLaunchDetails()
to fail when called from the background
flutter_local_notifications-v1.5.0-beta.7
- [Android] Added support for full-screen notifications via the
fullScreenIntent
argument that has been added to theAndroidNotificationDetails
class. Thanks to the PR from Nadav Fima
flutter_local_notifications-v1.4.4+3
- [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 calledgetNotificationAppLaunchDetails()
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
- [Android] Added the
getActiveNotifications()
method to theAndroidFlutterLocalNotificationsPlugin
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
- [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
- [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