genymotion - One-tap Android application killer -
i debugging application in genymotion emulator , pretty tired of terminating app when begins behave abnormally. dream have one-click (one-tap) application killer pre-configured terminate (or uninstall) 1 specific application.
could suggest some? googling haven't given decent result. apps found me require more clicks built-in application manager.
all genymotion virtual devices pre-rooted.
if app deveope, why dont chose add together shortcut
adb uninstall your.app
you can delete , clear info using
adb shell pm clear com.my.app.package
or kill linux commands
adb -d shell android $ su android # ps android # kill <process id ps output>
or forcefulness stop with
adb shell force-stop com.yourapp
or create simple app on start or when button clicked
process process = runtime.getruntime().exec("su"); dataoutputstream outputstream = new dataoutputstream(process.getoutputstream()); outputstream.writebytes("busybox killall yourprocess\n"); outputstream.flush(); outputstream.writebytes("exit\n"); outputstream.flush(); process.waitfor();
etc
android genymotion kill-process
No comments:
Post a Comment