Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am able to start native applications using am start -a action -n packagename/activity. How can I kill/stop a native application from adb shell?

share|improve this question
using my host ubuntu – user774217 Feb 16 '12 at 6:17

3 Answers

up vote 1 down vote accepted

Chirag deleted it, so here it is again:

adb shell ps | grep com.myapp | awk '{print $2}' | xargs adb shell kill

This is to be run outside of the emulator. It is one long Unix command, not four commands with a visual separation. | is syntax, interpreted by your (Ubuntu's) shell, which then pipes the output from adb, grep, etc., into the next. Only ps is executed in the emulator.

share|improve this answer
Just the adb shell ps | grep $1 | awk '{print $2}' portion is great for extracting just the PID of a named app ($1 in this example). – scorpiodawg Jun 19 '12 at 2:11
If you can't kill the service because you need root access, modify the last part to reflect xargs adb shell 'su -c kill'. Also, stackoverflow.com/a/9418553/198348 is related. – Shurane Apr 3 at 2:04
adb shell am force-stop packagename
share|improve this answer

Please try the below command in adb shell.

adb shell kill <PID>
share|improve this answer
grep doesnot work in android's shell – user774217 Feb 16 '12 at 6:45
1  
@user774217, That's not to be run in android's shell. See that it begins with adb shell? Try it in Ubuntu. – Julian Fondren Feb 16 '12 at 6:53
Julian Fondren is right . please try it in your ubantu terminal . – Chirag Raval Feb 16 '12 at 6:54
it would work fine for ubuntu ..here you are capturing android's ps once you are inside adb shell you wont be able to grep.I tried in ubuntu terminal not working – user774217 Feb 16 '12 at 7:16
This kills the process but does not guarantee the app is closed and gone. For example trying this on skype would make the app just restart instantly (try it once you are logged into skype). – MindWire Apr 4 '12 at 18:48

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.