Is it possible to stop an Android app from the console? Something like:
adb stop com.my.app.package
It would speed up our testing process s
adb shell killall -9 com.your.package.name
according to MAC "mandatory access control" you probably have the permission to kill process which is not started by root
have fun!