设备相关
// 查看已连接的设备
adb devices
// 云测连接连接某个设备
adb connect (设备)
// 例子
adb connect debug2.testin.cn:4556
// 断开某个设备
adb disconnect 192.168.1.61
// 断开全部设备
adb disconnect
安装 apk
// 安装 apk
adb install (apk路径)
// 卸载 apk
adb uninstall(apk包名)
清除应用数据与缓存
adb shell pm clear (apk包名)
查看屏幕
// 查看屏幕尺寸
adb shell wm size
// 查看屏幕分辨率
adb shell wm density
activity 相关
// 列出当前的 activity
adb shell dumpsys activity top | grep ACTIVITY
这个命令可以在反编译 apk 时用到,使用adb命令查看当前activity的类名,从而定位