I keep getting this error message:
Since Tizen 4.0 constructor AlarmAbsolute(Date date, long period) is deprecated, thus period attribute should not be used.
My alarm code looks like this:
/* Sets an alarm on January 1st 2014 08:00. */
var date = new Date(2014, 0, 1, 8, 0);
var alarm1 = new tizen.AlarmAbsolute(date);
tizen.alarm.add(alarm1, appId);
Any ideas on what i can do to stop getting this warning message?