Android Jobscheduler: Using Setminimumlatency With Setperiodic
I'm just playing around with JobScheduler, and have a couple of niggles. One of them is that, although you can delay a job by using setMinimumLatency(), you cannot use that in comb
In your implementation of JobService
class, call jobFinished(params, reschedule);
to reschedule before leaving onStartJob
method.
Also don't forget to return true
in onStopJob
method to reschedule as well.
Post a Comment for "Android Jobscheduler: Using Setminimumlatency With Setperiodic"