0、前提:adb shell
1、ps -A | grep 应用名(找出应用的进程)
如:ps -A | grep launcher(可以筛选出launcher的进程)
2、kill 1526 (杀死某个进程)
3、logcat | grep 1526(根据某个进程筛选logcat)
4、logcat | grep 关键字(根据关键字筛选logcat)
5、adb install -r -t -d 包名 (安装应用)
6、am broadcast -a android.intent.action.ABCD -es key "value" (-a表示action -es表示String类型的参数 -ei表示int类型)