1.查看连接设备
adb devices
直接ip时,模拟设备
设备,名称是真实设备
2. 进入设备底层中
# 进入设备底层中
adb -s 127.0.0.1:62001 shell
ls
# 退出
exit
#表示root权限
$表示没root权限
3.命令行安装卸载app
adb -s 127.0.0.1:62001 install
## 卸载
adb -s 127.0.0.1:62001 shell # 进入设备
cd /data/app # 定位安装包路径
ls #显示文件
exit
#adb -s 127.0.0.1:62001 uninstall 包名
adb -s 127.0.0.1:62001 uninstall com.douguo.recipe
4.无法连接设备
设备和adb server都是启动状态
adb devices
adb connect 127.0.0.1:62001
adb devices
5. 查看app名
上面有文件目录查看安装的app名
adb shell pm list package
6.把pc与设备文件互传
adb push E:\下载内容\README.txt /sdcard
#不能再磁盘根目录下,不然会报错权限问题
adb pull /sdcard/READ E:\下载内容\文件互传
7. 截图
adb shell screencap /sdcard/test.png
拿出来
adb pull /sdcard/test.png E:\下载内容\文件互传
8. uiautomator