打开设备中的USB调试选项
设备与电脑在同一无线网络下,并将设备与电脑连接
安装adb
检测设备
bash
adb devices
设置端口
bash
adb tcpip 9999
指定设备设置端口
bash
adb -s R52N6183CRM tcpip 9999
获取设备在当前wifi中的ip <192.168.10.10>
无线连接设备
bash
adb connect 192.168.10.10:9999
断开连接
bash
adb disconnect 192.168.10.10:9999
检测端口是否被占用
bash
lsof -i:9999
adb服务
bash
adb kill-server
adb start-server