Top "Android-jobscheduler" questions

Use this tag for questions related to the Android JobSchedule API for scheduling various types of jobs against the framework that will be executed in your application's own process.

How to check JobService is running or not in android?

I am using JobService in my project. It's working good. But sometimes service stopped. It is not restart again. So …

java android android-jobscheduler jobservice
Android jobScheduler won't stop with jobFinished(params, false)

I'm tring to create a jobService. Here is what onStartJob() looks like. @Override public boolean onStartJob(JobParameters params) { Log.d(…

java android service android-jobscheduler
Android JobScheduling - I need to pass an object to my job but how?

I would like to use Androids new JobScheduler in my app but right now I don't know how to pass …

android android-jobscheduler
Android start running JobScheduler at specific time

I want to start a JobScheduler at a specific time everyday, and finish it after 3 hours. I have the part …

android android-alarms android-jobscheduler
Android JobScheduler: If you schedule the same job with periodic time, does it start the period again?

What happens if I schedule the same periodic job (same job ID) and the Job has already been scheduled? Does …

android android-jobscheduler
Android JobScheduler run only once a day

I checkout the JobScheduler API which can be used since Android API level 21. I want to schedule a task which …

android android-jobscheduler
Android: How to use JobFinished of JobService

I didn't see example of using jobFinshed of JobService, seems like we have to track changes when some condition meet …

java android android-jobscheduler jobservice
How is JobIntentService related to JobService?

In case of Service and IntentService the main differences are Service runs on the main thread while IntentService is not, …

android android-jobscheduler
Android Oreo killing background services and clears pending alarms, scheduled jobs after entering doze mode

My app has a background service running that gets users current location and update it to a server every five …

android alarmmanager android-jobscheduler
Android- setPeriodic for JobScheduler won't work

I've wrote an app for creating and reminding task which uses local SqliteDatabase. I wrote a jobScheduler service to check …

android service android-sqlite android-jobscheduler