启动adb:adb start-server
杀死adb服务:adb kill-server
连接手机:adb connect ip+5555
安装软件:adb install ...apk
卸载软件:adb uninstall 包名
截屏:adb shell screencap -p /sdcard/game.png
推文件到电脑:adb pull /sdcard/game.png G:/PYthon/
在屏幕上做划屏操作,前四个数为坐标点x1 y1 x2 y2,点1滑动到点2,后面是滑动的时间(单位毫秒):
adb shell input swipe 50 250 250 250 500
在屏幕上点击坐标点x=50 y=250的位置:adb shell input tap 50 250
来源:CSDN
作者:Jackie.yang
链接:https://blog.csdn.net/qq_33430222/article/details/104790360