记录几个常用的adb命令

1、adb logcat -b events > eventlog1 将系统日志打印输入到eventlog1文件中

2、adb logcat -b events | findstr “am_proc_died | am_proc_start” 查看进程的启动信息,下边会记录每个进程的启动信息和死亡信息

3、adb shell ps 查看所有进程

4、adb shell ps | findstr “com” 查看所有以com开头的进程

5、adb shell pm list packages 查看手机里面所有包名

6、adb shell pm list packages -3 查看手机里面所有第三方包名

7、adb shell monkey -p 包名 100 指定app产生随机事件100次

8、adb shell monkey -p 包名 -v -v 100 指定app产生随机事件100次并发送详细的activity信息

9、adb shell pm clear com.ablesky.ui.activity 清除缓存数据

10、adb shell am start -n com.ablesky.ui.activity/com.ablesky.activity.SplashActivity 启动程序

11、adb shell am force-stop com.ablesky.simpleness.activity 强制停止运行程序

12、adb logcat 查看日志

13、adb logcat > D:log.txt 将日志打印到电脑上

你可能感兴趣的:(gradle,android,adb)