Does Job Service stops after a reboot?

Viewed 33

I have initialized a job service using JobScheduler that runs periodically. I reschedule this service after a reboot. Does this service stops after the device reboots? Or is it still running?

1 Answers

Job Service does not persist jobs,you can register a BroadcastReceiver with action BOOT_COMPLETED

Related