1.连接设备:
adb connect 192.168.127.56
提示connected to 192.168.127.56:5555 表示连接成功
unable to connect to 192.168.127.56:5555 表示连接失败
2.安装apk:
adb install C:\Users\Administrator\Desktop\1.apk
3.删除apk:
adb uninstall player
4.查看版本信息:
adb version
5.断开连接:
adb disconnect
6.启动服务:
adb start-server
7.停止服务:
adb kill-server
8.进入shell环境
adb shell
所以当运行命令adb shell时,会默认以shell身份进入到手机的shell环境中。
root后的手机想要以root身份运行shell命令,必须先su,此时命令提示符会由$变为#,表示当前 用户为root用户。如下图所示:
9.adb抓取log:
adb logcat -v time >d:/1.log
adb logcat –c 可以将之前的日志信息清空,重新开始输出日志信息,将缓存日志输出;
10.adb devices 获取到设备号
adb reboot 设备重启
adb pull /data/data/player/files/msg.json C:\file 文件拿到本地
adb push C:\msg.json /data/data/player/files/ 文件上传到设备