Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
flutter_local_notifications-v19.0.0 source code.tar.gz | 2025-03-16 | 4.9 MB | |
flutter_local_notifications-v19.0.0 source code.zip | 2025-03-16 | 5.1 MB | |
README.md | 2025-03-16 | 3.0 kB | |
Totals: 3 Items | 9.9 MB | 0 |
- [Android] Breaking change bumped
compileSdk
to 35 and updated readme to mention this - [Android] bumped GSON dependency to 2.12. As a result of doing so, applications should no longer need ProGuard rules related to this plugin that were needed for release builds to function. The readme has been updated to remove the associated setup to reflect this. Thanks to the PR from Koji Wakamiya
- [Android] bumped Android Gradle Plugin to 8.6.0 to align with the minimum version to use
compileSdk
version 35 (Android 15) - [Android] bumped desugaring library to 2.1.4 and set Java compatibility to 11 instead of 8. Readme has been updated to reflect these changes where
sourceCompatibility
andtargetCompability
should be set to JavaVersion.VERSION_11 (i.e. Java 11), andjvmTarget
is set to11
- [iOS] Breaking change removed
uiLocalNotificationDateInterpretation
parameter fromzonedSchedule()
method. This was done as it actually no relevant as of the 18.0.0 that dropped support for iOS versions older than 10, which in turn meant that the deprecatedUILocalNotification
APIs from Apple were no longer used. The correspondingUILocalNotificationDateInterpretation
enum has already been removed as well - [iOS][macOS] Breaking changes the
DarwinNotificationActionOption
andDarwinNotificationCategoryOption
are now enhanced enums with values accessible through thevalue
property that are exactly the same as their native representations. Previously a bitwise left shift operation was applied to the index value - [iOS][macOS] Breaking change renamed
Converters
header and implementation toFlutterLocalNotificationsConverters
. This would likely not affect any users of the plugin. Done to fix/mitigate issues #2160 and #2529 where the original name could clash - [iOS][macOS] added Swift Package Manager support
- [Windows] Added support for Windows. Thanks to PR Levi Lesches that continued the work done initially done by Kenneth and lightrabbit
- Breaking change bumped minimum Flutter SDK requirement to 3.22.0 and Dart SDK requirement to 3.4.0. The minimum supported Android version is now 5.0 (API level 21)
- Bumped
timezone
dependency so that minimum version is now 0.10.0 - Bumped multiple dependencies in example app
- Bumped minimum
plugin_platform_interface
version to 2.1.8 - Updated example app's
AndroidManifest.xml
to request internet permissions so that release builds can download remote content - Migrated example app to use Plugin DSL. Thanks to the PR from Martin Bertele
- Updated
compileSdk
andtargetSdkVersion
of example app to 35