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 would like to crash my Android app by using command-line ADB tool during my app is running, is it possible to do? and how ?

(Basically, I want to test if my app persist the necessary informations when it is crashed. So, I would like to demo this by crash my app by some command-line tool, like ADB.)

***** Update ********

In other words, how to kill my app process by using ADB tool?

share|improve this question
Why downvote my post???? What is wrong with my question:( – Leem.fin Mar 20 '12 at 7:53
This should not be required, you should be using things like a test case to force it to crash somehow. – JoxTraex Mar 20 '12 at 7:53
1  
I don't agree with you JoxTraex. Basically what I am asking is how to kill my app process by using ADB tool. I don't see any problem of asking for this. – Leem.fin Mar 20 '12 at 7:55
I am sure there will be another Android newbie who will be also interested and ask it. Downvote is not a good idea. – Leem.fin Mar 20 '12 at 7:59

4 Answers

adb shell kill <PID>

Try the below command in abd shell.

share|improve this answer
6  
Hi, I got error "/system/bin/sh: kill: 3511: Operation not permitted" – Leem.fin Mar 20 '12 at 8:08

You can kill your app from the shell:

adb -s YOURDEVICEID shell
top // find your app pid
kill -p YOUR_APP_PID
share|improve this answer
Thanks, this is exactly what I need. – Leem.fin Mar 20 '12 at 7:57
2  
But I got -p unkonwn option, I removed -p and then got "Operation not permitted", I then change to use sudo kill 3511, I got the same error. WHy? – Leem.fin Mar 20 '12 at 8:07
I think you should use @bas answer once you know the pid. – Binyamin Sharet Mar 20 '12 at 8:09
1  
I used his answer, but got the same error – Leem.fin Mar 20 '12 at 8:11

App crashing at runtime is nothing but an Occurance of Exception, The place after which you want to crash your app, write a logic which causes for an Exception.

share|improve this answer
up vote 0 down vote accepted

I can easily kill my app from Eclipse DDMS. Just stop the process , e.g. stop "com.my.app"

share|improve this answer

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.