Hello I was reading on android docs about these two constans of AlarmManager
but didn't get exactly the difference between them.
RTC Alarm time in System.currentTimeMillis() (wall clock time in UTC).
RTC_WAKEUP Alarm time in System.currentTimeMillis() (wall clock time in UTC), which will wake up the device when it goes off.
Does not RTC
wake up the device and fire the PendingIntent
when device is in sleeping mode ?
Thanks in advance.