Android: Alarmmanager Recuring Tasks Once A Day At Midnight
I am trying to make a task repeat at the end of each day (23.59) to do so I would like to use alarmmanager.setRepeating(). In my test i have come up with a bit of code that i thoug
Solution 1:
I thought the 1000 was in miliseconds ? it should therefore be 1s ?
It is. However, on Android 5.1 and higher, you cannot schedule a repeating task that frequently. If you try, it will be rounded up to a minute.
Post a Comment for "Android: Alarmmanager Recuring Tasks Once A Day At Midnight"