Android: adb shell

To manually kill a process that is running:

adb shell


In the shell, type:

ps


This will produce something like the following:

app_23 --- 19333 --- 19283 --- 840 --- 312 --- ffffffff --- com.sample.app


Kill the process with the PID:

kill 19333

No comments:

Post a Comment