How can I prevent my Android app/service from being "killed" from a task manager?

Posted by Don on Stack Overflow See other posts from Stack Overflow or by Don
Published on 2010-05-07T02:39:24Z Indexed on 2010/05/07 2:48 UTC
Read the original article Hit count: 325

Filed under:
|
|
|
|

It is very important that my service stay running until someone with a password stops the service from my UI screen. My app runs great but it is designed to be turned on/off by parents (with a password) on their kids phones. I have managed to make everything work but the problem I'm having is that if the kid uses a task manager to kill my service then my app is useless. I would be grateful to anyone who knows a way to either

1) monitor the service and start it back up automatically if its "killed" or 2) prevent someone from being able to kill it except from the activity (administration screen) that launched the service. Or both?

I'm sorry if I'm not very clear in describing the problem, I'm a beginner. I've made great progress so far but I am stuck at this last hurdle.

© Stack Overflow or respective owner

Related posts about android

Related posts about prevent