Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions flutter_local_notifications/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# [17.1.0]

* [Android] Upgrade `androidx.core:core` to 1.5.0 for supporting `setSilent()` in notification builder.
* [Android] Fixed: NullPointerException when trying to call `intValue()` while parsing `notificationDetails`.

# [17.0.3]

* [Android] Added `shownNotificationsInfo` param to `NotificationDetails`. If you pass this param
Expand Down
2 changes: 1 addition & 1 deletion flutter_local_notifications/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ android {

dependencies {
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.2.2'
implementation "androidx.core:core:1.3.0"
implementation "androidx.core:core:1.5.0"
implementation "androidx.media:media:1.1.0"
implementation "com.google.code.gson:gson:2.8.9"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@ private static void readPlatformSpecifics(
readStyleInformation(notificationDetails, platformChannelSpecifics);
notificationDetails.icon = (String) platformChannelSpecifics.get(ICON);
notificationDetails.priority = (Integer) platformChannelSpecifics.get(PRIORITY);
notificationDetails.importance = (Integer) platformChannelSpecifics.get(IMPORTANCE);
readSoundInformation(notificationDetails, platformChannelSpecifics);
notificationDetails.enableVibration =
(Boolean) platformChannelSpecifics.get(ENABLE_VIBRATION);
Expand Down
2 changes: 1 addition & 1 deletion flutter_local_notifications/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: flutter_local_notifications_plus
description: A cross platform plugin for displaying and scheduling local
notifications for Flutter applications with the ability to customise for each
platform.
version: 17.0.3
version: 17.1.0
homepage: https://github.com/Innim/flutter_local_notifications
repository: https://github.com/Innim/flutter_local_notifications
issue_tracker: https://github.com/Innim/flutter_local_notifications/issues
Expand Down