Hi I am developing a program. I integrated local notification to program, but problem is that i cant do it repeatly everyday .
plugin
I used this plugin and wrote this code in index.js in device ready. it is working normally but when i add first time for notification it gives error.
cordova.plugins.notification.local.schedule({
id: 1,
text: "Come and Evaluate your Friends!",
firstAt: tomorrow_at_11_am,
every: "day"
});
firstAt: tomorrow_at_11_am part is not working. How can i fix this solution?