Background work with JobScheduler (Android Development Patterns S3 Ep 12)

Read the blog post () for all the details on scheduling background work with JobScheduler, available on Android Lollipop (API 21) and higher. JobScheduler batches jobs together across all apps making it a great choice for conserving battery, reducing overall memory pressure on API 24 and higher, and using JobScheduler means you are automatically aware of Doze and App Standby. Jobs can be persisted across reboots, scheduled to repeat at a set interval, automatically backoff in response
Back to Top