You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since, from API level 19, alarm.set is not any longer fixed in time but is approximate and decided by Android, we use alarm.setExact for >=19 (kitkat)
Note: it seems to be working but not testing completely...
Luigi raised concern over the accuracy. Asked to change:
am.set(AlarmManager.RTC_WAKEUP, when.getTime(), pi);
to become
am.setExact(AlarmManager.RTC_WAKEUP, when.getTime(), pi);
Need to just validate that this isn't going to cause any other issue. Might want to provide the ability for the developer to specify exact or not.
The text was updated successfully, but these errors were encountered: