I am using AlarmManager
in our app to set alarms that are set at specific date and time. Now recently few users of our app are complaining that these alarms are not popping up. Also, in Android O guidelines, it is mentioned that app should not run any background service and instead should switch to Firebase
JobDispatcher
. I have following 2 questions
- In our app, we do not do any background task except to show notification to user at the specified time and date. Even in this case, should we switch to
Firebase
Jobdispatcher
? - In case we do need to switch to
JobDispatcher
, how can the Job be set to run at exactly specific date and time?