-2

I'm using the Evernote Android-Job to schedule notifications using the setExact method which uses Alarm Manager internally. Now the problem is when the app is killed all pending alarms are killed and are rescheduled when app opens.

Here's the official doc: https://github.com/evernote/android-job/blob/master/FAQ.md#why-arent-my-periodic-jobs-running-as-expected-on-android-5-or-higher

How can I user GCM Network Manager or Firebase Job Dispatcher to meet my requirements

Now is there any work around for this using the same library or should I consider using other ones?

Veeresh Charantimath
  • 4,641
  • 5
  • 27
  • 36

1 Answers1

0

The library will reschedule the job (what means creating a new alarm for exact jobs) as soon as it gets a chance. E.g. after force closing the app, then alarm is created again after the user started the app again. After restarting the device the alarm is also created again.

vRallev
  • 4,982
  • 3
  • 31
  • 34