Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to terminate task using code like this:

import android

droid = android.Android()

running = droid.getRunningPackages()[1]

for task in running:
 if (task.find("skype") != -1)
  droid.forceStopPackages(task)

this works properly except killing call

`droid.forceStopPackages(task)` # When we get here, variable `task` contains "com.skype.raider" string

nothing happens after that. I expected that running skype application will be terminated.

share|improve this question

1 Answer

Since Android 2.2 (Froyo) killing apps is not really reliable. Play around with a task killer to see what I mean.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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