Top "Alarmmanager" questions

Android class providing access to the system alarm services.

Job Scheduler vs Background Service

I have an app which has a feature A which should run in background every minute. Feature A is that …

android alarmmanager background-process android-handler android-jobscheduler
Set Repeat days of week alarm in android

Can somebody give good logic for set repeat days of week alarm? I have done weekly Alarm by using alarmCalendar.…

java android alarmmanager repeatingalarm
Difference between setRepeating and setInexactRepeating of AlarmManager

What are the parameters of the following: alarmMgr.setRepeating(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), AlarmManager.INTERVAL_FIFTEEN_MINUTES, alarmIntent); And …

android alarmmanager android-alarms
FLAG_CANCEL_CURRENT or FLAG_UPDATE_CURRENT

My app sets a repeating alarm on user interaction, it might change the interval time set for the broadcast with …

android alarmmanager android-pendingintent
does Alarm Manager persist even after reboot?

I am really new to android, I have been researching about alarms. I want to alarm if there is a …

android alarmmanager android-alarms
How to make Alarm Manager work when Android 6.0 in Doze mode?

I am a developer of two alarm clock apps on Google Play. I am trying to get them to work …

android alarmmanager android-6.0-marshmallow
Android alarm not working

I've been struggling with this for hours. I've also checked the documentation and several topics. I found this code in …

android alarmmanager
Android Alarm Manager with broadcast receiver registered in code rather than manifest

I want to use an alarm to run some code at a certain time. I have successfully implemented an alarm …

android broadcastreceiver alarmmanager
Service that runs every minute

I have a service that I am wanting to execute a task every minute in the background. It does not …

android service alarmmanager
Is there any way to check if an alarm is already set?

I am stuck. When my application starts I want to check if an alarm is alive that I previously set. …

android alarmmanager