Re: [android-developers] Run the Service continuously even force close the app.

2012-10-15 Thread Mark Murphy
On Mon, Oct 15, 2012 at 6:49 AM, Seshu wrote: > I have a requirement that i need to run the service > continuously even if the user force close the app Fortunately, as of Android 3.1, this is not possible. If the user goes into Settings and clicks the Force Close button, nothing of your

[android-developers] Run the Service continuously even force close the app.

2012-10-15 Thread Seshu
Hi All, I have a requirement that i need to run the service continuously even if the user force close the app. i.e., i am calling a webservice for every 15 mins or half an hour. I used Timer Concept but when i force close the app then service is not calling.. Anybody have idea on these the