adb连接的2种方式,有线(USB线)和无线
·
参考文章
https://www.jianshu.com/p/6769bfc3e2da
https://blog.csdn.net/yuemingxingxing/article/details/86590989
通过usb线连接
这种情况下直接输入adb devices即可
输入adb devices,显示
List of devices attached
DG4064b7ac4408 device
emulator-5556 device
- 若想选择第一台设备操作,执行命令adb -s DG4064b7ac4408 shell,进入该设备操作
- 如果只有一个模拟器和一个手机连着电脑; 可以用adb -e 来指明是操作模拟器(Emulator); 可以用adb -d 来指明是操作设备(Device)
无线连接
使用的是adb connect
开启Wifi连接adb 方式一(需要root):
adb shell
setprop service.adb.tcp.port 5555
stop adb
start adb
exit
adb connect 192.168.0.181:5555
开启Wifi连接adb 方式二:
adb tcpip 5555
adb kill-server
adb connect 192.168.0.148(手机的IP地址)
USB调试模式与WIFI调试模式切换
adb usb 切换到USB模式
adb tcpip 5555 切换到WIFI无线调试
WIFI 无线调试下 连接与断开连接的指令
adb connect 192.168.0.181 连接设备
adb disconnect 192.168.0.181 断开设备连接
更多推荐
已为社区贡献1条内容
所有评论(0)