Hi folks,
I’m experimenting blocking issue with cordovaLocalNotification plugin only for ios10.
- I’ve not updated my source code in prod.
- localNotification is still working on android
- on all ios devices updated to ios10, localNotification is not working anymore
It seems that there is a github issue on the official plugin page :
https://github.com/katzer/cordova-plugin-local-notifications/issues/1096
But i’m scared to pull temporarly branch fix. Anybody has experimented this issue ?
It is killing 2 of my production app with a lot of clients impacted…
I’ve not found any other plugin to send local notification on ios.
Sample of source code that was working on ios9 and previous and that is still working on Android (but not anymore on ios10) :
cordova.plugins.notification.local.schedule({
id: Date.now(),
title: ‘My local notif title’,
text: ‘my contentt’
});