I cannot find a proper tutorial on sending scheduled local notifications
I came up with this but below code is not workingit is not working
void Start ()
{
LocalNotification notif = new LocalNotification();
notif.fireDate = System.DateTime.Now.AddSeconds(5f);
notif.alertBody = "Hey";
NotificationServices.ScheduleLocalNotification(notif);
}
Please help me with this