I'm developing an app with cordova and i'm using this plugin to schedule a local notification every day to 6 o'clock https://github.com/katzer/cordova-plugin-local-notifications
Everything works fine, this is the code that i'm using to set de Notification
/*Set 6 o'clock*/ function setTestAlarm() { var notify = new Date(); notify.setHours(18,00,00,00); localNotification.add({ id: 1, title: 'My app', message: 'Hi this is a notification', repeat: 'daily', date: notify, autoCancel: true, ongoing: true, });
I was doing testing , and notification appears every day at 6 pm but only for 9 consecutive days and then stops appearing . What am I doing wrong?
Thanks