安卓开发者模式中没有无线调试选项如何开启ADB无线调试
安卓开发者模式中没有无线调试选项如何开启ADB无线调试
- 打开手机USB调试,连接电脑
- 查看adb设备
adb devices
- 查看设备ip
adb shell ifconfig wlan0
- 设备打开5555端口监听
adb tcpip 5555
- 连接设备
adb connect 192.168.2.166:5555
- 使用完后断开设备
adb disconnect 192.168.2.166
adb devices
adb shell ifconfig wlan0
adb tcpip 5555
adb connect 192.168.2.166:5555
adb disconnect 192.168.2.166