1、adb帮助
adb --help
2、启动adb server
adb start-server
3、关闭adb server
adb kill-server
4、获取设备号
adb devices
5、获取系统版本号
adb -s 设备号 shell getprop ro.build.version.release
6、发送文件到手机上
adb push 电脑端文件路径/需要发送的文件 手机端存储路径
7、发送手机文件到电脑上
adb pull 手机端路径/需要发送的文件 电脑端存储路径
8、获取app启动包名和启动名(需要在手机上先打开软件)
adb shell dumpsys window | findstr mCurrentFocus 推荐写法
adb shell dumpsys window windows | findstr mFocusedApp
adb shell dumpsys window | findstr mFocused
adb shell dumpsys activity | findstr mFocusedActivity
adb shell dumpsys window | findstr mFocusedApp
9、获取app启动时间
adb shell am start -W 包名/启动名
10、进入shell模式
adb shell