I am working on an application which spawns some services in the background using AlarmManager. Timing is very crucial to our application and the functionality can't wait for the next maintenance window to occur. Asking a user to white-list the application is not an issue but doesn't fix the issue of suspending alarms. Also battery consumption is not that big of an issue as well.
First possible solution that came to my mind was to spawn an always running foreground service to handle the rescheduling of services instead of AlarmManager but in doing so will shift most of the base structure of our application and is not feasible for us.
Current fix that I just implemented is to send a high priority push notification and on receiving the message, take full wake lock and turn on the screen to break doze mode.
I wanted to know if there is an alternate way of breaking doze mode? Also is it possible without taking a wake lock? Can there be some possible repercussions of implementing the aforementioned solution?
P.S. I am using UrbanAirship for push notifications.
You can not "break"/stop/disable doze mode, but there are ways to temporarily lift your app's restrictions while the device is dozing.
andAllowWhileIdle
alarm set with AlarmManager.Note that the minimum interval between two alarms in doze mode is 9 minutes.
For both cases, your app is restored to full functionality (meaning: the doze restrictions do not apply) for a short period of time, when that time expires, the OS will reinstate the doze restrictions.
Note that you do not need to turn on the screen to execute code during either of these 'wake up' periods.
I don't have a source at hand, but I believe the short period I name is ~10 seconds.
Source & additional reading