Hi everyone,
I'm trying to show notifications at specific times. (Like an AlarmRelative or AlarmAbsolute, but then a notification)
With an AlarmRelative I'd do the following:
var alarm = new tizen.AlarmRelative(tizen.alarm.PERIOD_HOUR, tizen.alarm.PERIOD_HOUR); tizen.alarm.add(alarm, tizen.application.getCurrentApplication().appInfo.id);
This would set an alarm in an hour, every hour.
I would like to do this, but with a notification, so that it shows a notification e.g. every hour.
Is this possible? And if so, how?
I tried using the Calendar API, setting a repeating calendar item, but that didn't work out, as you can't create a hidden calendar item and the user must give permission for using the Calendar.
Any help would be greatly appreciated!