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.