I’m creating an alarm with the following code to show a notification at a certain time. It is working fine on the emulator but not on a real watch running Tizen 5.5.0.1, what is weird.
Notification notif = new Notification {
Title = AppResources.WellDone,
Content = AppResources.Workout_Ended
};
DateTime endTime = _startTime.Value.AddHours(_interval);
Tizen.Applications.AlarmManager.CreateAlarm(endTime, notif);
What can be wrong here?