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
The clean way of stopping the app is:
adb shell am force-stop com.my.app.package
This way you don't have to figure out the process ID.