adb start-server
adb kill-server
adb connect 云手机ip+端口
adb devices
adb reboot [bootloader|recovery] #可选参数进入bootloader(刷机模式)或recovery(恢复模式)
adb install app的本地绝对路径 adb install -r app的本地绝对路径 #删除已安装,并安装
adb uninstall 包名 adb uninstall -k 包名#可选参数-k的做用为卸载软件可是保留配置和缓存文件
adb shell dumpsys package 包名
adb shell pm path 包名
adb shell pm clear 包名
adb shell pm list packages adb shell pm list packages | grep 指定名称 #找到指定包名
1.上传python
adb push 本地路径 手机路径
2.下载shell
adb pull 手机路径 本地路径
adb shell
其余有空再补充
缓存