Android用WIFI 建立ADB连接

Step by step

1. 将手机和电脑连接到同一个wifi下;
2. 将电脑和手机用usb线连接;
3. 设置wifi调试端口为5555
adb tcpip 5555
4. 查看手机ip
adb shell "ifconfig | grep -A 1 wlan0 | tail -n 1 | cut -f2 -d: | cut -f1 -d' '"
5. 断开usb连接, 然后创建连接

假设手机ip为192.168.1.222

adb connect 192.168.1.222:5555

大功告成!~

附:

shell命令具体解释:
ifconfig 查看网络接口信息

Android用WIFI 建立ADB连接_第1张图片
image.png

grep -A 1 wlan0 搜索包含"wlan0"所在的一行 以及它的下一行(Append)

image.png

tail -n 1 输出末尾一行

image.png

cut -f2 -d::作为分隔符切割字符串, 同时选取第二段输出

image.png

cut -f1 -d:空格作为分隔符切割字符串, 同时选取第一段输出

image.png

你可能感兴趣的:(Android用WIFI 建立ADB连接)