How do I kill an application running in the emulator? I mean manually and not through code.
The Settings->Apps->Running tab does not display my application and Dev Tools->Running Processes lists my application but I don’t see how to kill the process. I don’t see any option in adb to kill a process either.
If you want to kill without ddms :
Use this to list the processes and their pid’s
and go for the kill using
Where
<PID>is the Process you want to kill (int)