I have been developing an Android application and I need to execute 1 task every hour. I uses the following code for it:
private static final long ALARM_PERI
Instead of Alram-Manager I recommended you to use Android-TimerTask
The TimerTask class represents a task to run at a specified time. The task may be run once or repeatedly. Its perfect suits for your requirements.
TimerTask