adb操作

查看设备

单个设备 直接adb shell

多个设备 adb devices 

进入指定设备 adb -s 设备名 shell 

模拟点击

点击100,200的点:adb shell input tap 100 200

安装软件

1.安装:adb install C:/Users/Administrator/Desktop/HB.apk

2.覆盖安装:adb install -r xxx.apk强制安装(覆盖安装时使用)

3.安卓测试软件:adb install -t test.apk

卸载包:

adb uninstall 安装包包名

启动软件

adb shell am start 包名/.要启动的activity名字

例:adb shell am start com.example.testzq/.MainActivity

adb操作最先出现在Python成神之路

版权声明:
作者:玉兰
链接:https://www.techfm.club/p/27921.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>