Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 so much. Right now we uninstall/install the app each time to make sure the manual test cases start with a clean state.

share|improve this question

5 Answers

up vote 21 down vote accepted

If you're on Linux:
adb shell ps | grep com.myapp | awk '{print $2}' | xargs adb shell kill

That will only work for devices/emulators where you have root immediately upon running a shell. That can probably be refined slightly to call su beforehand.

Otherwise, you can do (manually, or I suppose scripted):
pc $ adb -d shell
android $ su
android # ps
android # kill <process id from ps output>

share|improve this answer
2  
Couldn't get it to work (permission denied both for kill and su), but +1 for showing me I can do lots more than I thought with adb. – hpique Jun 25 '10 at 11:06
3  
Ah, sounds like you don't have a rooted device. It definitely works on the emulator at least! :) – Christopher Jun 25 '10 at 11:55
Maybe you have to remount the partition read-write and run adb as root: adb remount; adb root # that's just a stupid guess thought – Rorist Jun 25 '10 at 12:25

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.

share|improve this answer
1  
Note that this doesn't work for system apps. – Paul Lammertsma Dec 19 '12 at 15:44
6  
Error: Unknown command: force-stop - Android 2.3 – zed_0xff Jan 4 at 12:51

If you have access to the application package, then you can install with the -r option and it will kill the process if it is currently running as a side effect. Like this:

adb -d install -r MyApp.apk ; adb -d shell am start -a android.intent.action.MAIN -n com.MyCompany.MyApp/.MyActivity

The -r option preserves the data currently associated with the app. However, if you want a clean slate like you mention you might not want to use that option.

share|improve this answer

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.

share|improve this answer
On a non-rooted phone this seems to do nothing. – Robert Muil May 25 '12 at 15:09
I've checke it on a non-rooted phone. At first there are some permission denied messages and then it killed my DalvicVM app/service. Just give it a sec. – LikeYou May 9 at 16:25

In eclipse go to the DDMS perspective and in the devices tab click the process you want to kill under the device you want to kill it on. You then just need to press the stop button and it should kill the process.

I'm not sure how you'd do this from the command line tool but there must be a way. Maybe you do it through the adb shell...

share|improve this answer
I've found a code snippet on GitHub on how to do this from the command line without running Eclipse and extended it slightly. – sschuberth Jul 25 '12 at 11:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.