JobScheduler behaviour on Android O

跟風遠走 提交于 2019-12-04 18:04:15
CommonsWare

Can they live "forever" (as long as the system doesn't need the memory, of course), or do the system also kills them off at the end of a certain window?

No. In my testing, you have ~10 minutes, as opposed to the ~1 minute for a regular service.

If you need a service that runs forever, you will need to make it be a foreground service (startForegroundService() on Android O+, or startService() plus startForeground() on Android 7.1 and earlier).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!