Please also read the Upgrade Guide for more information.
- Fixes an issue where custom notification sounds were not playing. RMET-4280
- iOS: Add hook to add set
handleApplicationNotifications(https://outsystemsrd.atlassian.net/browse/RMET-3658).
- Android: Fix endless loop of notification permission denial when granting exact alarm permission.
- Android: Deliver notifications while app is in foreground if
foregroundoption istrue. RMET-3699
- Android: Make PendingIntents immutable for Android 14 RMET-2666
- Android: Replace dependency on Android Support Libraries with AndroidX RMET-2823
- Removed dependency to jcenter RMET-2036
- Fix required for Android 13 regarding notification permissions (https://outsystemsrd.atlassian.net/browse/RMET-1833)
- New plugin release to include metadata tag in Extensibility Configurations in the OS wrapper
- Fix required for Android 12 - Use Activity instead of Service to handle notification clicks (https://outsystemsrd.atlassian.net/browse/RMET-1007)
- Changes required for Android 12 - Include SCHEDULE_EXACT_ALARM permission and specify mutability on PendingIntents (https://outsystemsrd.atlassian.net/browse/RMET-822)
- Changes required for Andorid 12 - Change dependecy to cordova-plugin-badge so that MABS 8 build works (because of a gradle file) (https://outsystemsrd.atlassian.net/browse/RMET-822)
- Changes required for Andorid 12 - Do not use notification trampolines for Android >= 12 (https://outsystemsrd.atlassian.net/browse/RMET-822)
- iOS 10
- Bug fixes
- SyntaxError: missing ) after argument list
- Platform enhancements
- Support for the
Crosswalk Engine - Support for
cordova-ios@4and theWKWebView Engine - Support for
cordova-windows@4andWindows 10without using hooks - Enhancements
- New
colorattribute for Android (Thanks to @Eusebius1920) - New
quarterintervall for iOS & Android smallIconis optional (Android)updatechecks for permission like schedule- Decreased time-frame for trigger event (iOS)
- Force
every:to be a string on iOS - Bug fixes
- Fixed #634 option to skip permission check
- Fixed #588 crash when basename & extension can't be extracted (Android)
- Fixed #732 loop between update and trigger (Android)
- Fixed #710 crash due to >500 notifications (Android)
- Fixed #682 crash while resuming app from notification (Android 6)
- Fixed #612 cannot update icon or sound (Android)
- Fixed crashing get(ID) if notification doesn't exist
- Fixed #569 getScheduled returns two items per notification
- Fixed #700 notifications appears on bootup
- Submitted to npm
- Initial support for the
windowsplatform - Re-add autoCancel option on Android
- Warn about unknown properties
- Fix crash on iOS 9
- Fixed webView-Problems with cordova-android 4.0
- Fix get* with single id
- Fix issue when passing data in milliseconds
- Update device plugin id
- Several other fixes
- Fix incompatibility with cordova version 3.5-3.0
- Fire
clearinstead ofcancelevent when clicked on repeating notifications - Do not fire
clearorcancelevent when clicked on persistent notifications
- Support for iOS 8, Android 2 (SDK >= 7) and Android 5
- Windows Phone 8.1 will be added soon
- New interfaces to ask for / register permissions required to schedule local notifications
hasPermission()andregisterPermission()- schedule() will register the permission automatically and schedule the notification if granted.
- New interface to update already scheduled|triggered local notifications
update()- New interfaces to clear the notification center
clear()andclearAll()- New interfaces to query for local notifications, their properties, their IDs and their existence depend on their state
isPresent(),isScheduled(),isTriggered()getIds(),getAllIds(),getScheduledIds(),getTriggeredIds()get(),getAll(),getScheduled(),getTriggered()- Schedule multiple local notifications at once
schedule( [{...},{...}] )- Update multiple local notifications at once
update( [{...},{...}] )- Clear multiple local notifications at once
clear( [1, 2] )- Cancel multiple local notifications at once
cancel( [1, 2] )- New URI format to specify sound and image resources
http(s):for remote resources (Android)file:for local resources relative to the www folderres:for native resources- New events
schedule,update,clear,clearallandcancelall- Enhanced event informations
- Listener will get called with the local notification object instead of only the ID
- Multiple listener for one event
on(event, callback, scope)- Unregister event listener
un(event, callback)- New Android specific properties
ledpropertiessoundandimageaccepts remote resources- Callback function and scope for all interface methods
schedule( notification, callback, scope )- Renamed
add()toschedule() autoCancelproperty has been removed- Use
ongoing: truefor persistent local notifications on Android - Renamed repeat intervals
second,minute,hour,day,week,monthandyear- Renamed some local notification properties
date,json,messageandrepeat- Scheduling local notifications with the deprecated properties is still possible
- Kitchen Sink sample app
- Wiki