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
you can use the following from the device console: pm disable com.my.app.package which will kill it. Then use pm enable com.my.app.package so that you can launch it again.
pm disable com.my.app.package
pm enable com.my.app.package