Quote:
Originally Posted by SCION
You should spell this out for people who have no idea what you're talking about, but may be interested in learning.
|
Sure:
Code:
adb shell ps | grep applauncher | awk '{print $2}' | xargs adb shell kill
This is for Linux. For those using Windows, well, good luck to y'all :-)
Windows:
1.- adb shell ps
2.- look at the list of processes and write down the PID for the applauncher
3.- adb shell kill <PID>