简体   繁体   中英

Android - Service stops when swiping app from recent apps

I've developed an android application with a service that runs in the background the service is called like that

startService(new Intent(getApplicationContext(),myService.class));

but when I remove the app from the recent apps, the service stops and it crashes if I test it.. is there a way to prevent the service from being destroyed when swiping the app from the recent apps?

thank you

You can register a service to run on a repeating cycle using AlarmManager

http://developer.android.com/reference/android/app/AlarmManager.html

The service will run even if the application is not running.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM