Although late, try the following: https://github.com/katzer/cordova-plugin-local-notifications/wiki/11.-Samples
cordova.plugins.notification.local.schedule({ id: 1, text: "Good morning!", firstAt: tomorrow_at_6_am, every: "day" // "minute", "hour", "week", "month", "year" });
For tomorrow_at_6_am you can try the following:
var today = new Date(); var tomorrow = new Date(); tomorrow.setDate(today.getDate()+1); tomorrow.setHours(6); tomorrow.setMinutes(0); tomorrow.setSeconds(0); var tomorrow_at_6_am = new Date(tomorrow);
source share