i register a notification like below:
var date= new Date();
date.setHour(15);
date.setMinutes(10);
window.plugin.notification.local.add({
id: "p10", // A unique id of the notification
date: date, // This expects a date object
message: "Notification appear", // The message that is displayed
title: "hi", // The title of the message
json: String, // Data to be passed through the notification
autoCancel: true, // Setting this flag and the notification is automatically cancelled when the user clicks it
}, callback, scope);
this work fine but if i change my mobile timing then this notification is not show?
if i change my mobile time according to alert time then i am not receiving alert. why.?