Skip to content

Instantly share code, notes, and snippets.

@terrelewis
Created May 30, 2019 13:55
Show Gist options
  • Save terrelewis/3fa7c360dd594fe49eff82b1f7e99eab to your computer and use it in GitHub Desktop.
Save terrelewis/3fa7c360dd594fe49eff82b1f7e99eab to your computer and use it in GitHub Desktop.
@Override
public boolean onStartJob(JobParameters jobParameters) {
Timber.d("In 15 min job check");
//Check if the alarm is scheduled
boolean alarmOn = (PendingIntent.getBroadcast(context, REQUEST_CODE, intent, PendingIntent.FLAG_NO_CREATE)) != null);
if(!alarmOn)
AlarmScheduler.rescheduleRequiredAlarm();
jobFinished(jobParameters, false);
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment