获取当前的activity
adb shell dumpsys window | findstr mCurrentFocus
adb logcat| grep ActivityManager
adb shell dumpsys activity activities
获取映射列表
adb forward --list
开启一个映射端口
adb forward tcp:9222 localabstract:webview_devtools_remote_29977
查看系统日志
adb logcat
将dumpsys,dumpstate以及logcat的信息全部展示 dumpsys 打印系统信息,dumpstate打印状态信息
adb bugreport
安装包
adb install -r(覆盖安装)
卸载安装包
adb uninstall app包名
adb push 上传文件,
adb push xxx.txt /data/local/tmp
adb pull下拉文件
adb pull /data/local/tmp/dump.txt c:/Test
关闭服务
adb kill-server
启服务
adb start-server
DOS命令
netstat -ano|findstr 4723 查看4723端口是否被占用
taskkill -F -pid xxx 杀进程