Reputation: 5
My application is a GPS tracking, after every 2 mins, the latitude and longitude are stored into database. If user manually stops the application from
settings->manage application->our app --->Force stop
I need to start the app again. Is it possible?. Google play service starts again ,if we force stop the application. Why this one is possible?
Upvotes: 0
Views: 9013
Reputation: 2357
I'm not sure why would you want the service to start if the user explicitly chooses to kill the app. However, you can auto start the service at boot time. Refer link: Android -Starting Service at Boot Time
Upvotes: 5