I want to create a unstoppable service, i.e if the user clicks the Force Stop from settings->Manage Applications->APP_NAME, I want to know that any method for killing that service like onDestroy() is called or the android OS kills that service on its own.

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

Starting a service on boot with a Sticky flag is the normal way of doing this.

link|improve this answer
Thank you very much.. It worked for me... But when the user clicks force stop the event can not be captured... so that is being a difficult task. – user868843 Jan 13 at 8:59
Its a bit nonsensical for an application to capture is own kill. That's the point of kill not to be handled by the application but just to be cleaned up by the OS. According to the documentation the service will be restarted by the system. – Dan S Jan 13 at 17:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.