Android通过Wifi来调试应用

1.确保手机和电脑连接在同一wifi局域网内,并确保电脑配置了adb环境变量


2.使用USB数据线连接手机与电脑


3.设置手机监听TCP/IP端口,如

$ adb tcpip 5555

4.拔掉连接手机与电脑的USB数据线


5.查看手机IP(在手机设置中查看具体连接的wifi的IP),如:192.168.1.2


6.电脑终端中输入:

$ adb connect 192.168.1.2
7.确保连接上指定的IP(手机),如果成功,将如下显示:
$ adb devices
List of devices attached
192.168.1.2:5555 device

8.如果有多个设备的情况,使用```-s```来指定设备, 如设备为3367321b

$ adb -s 3367321b tcpip 5558

 然后在终端执行

$ adb connect 192.168.1.101:5558



ref:https://developer.android.com/studio/command-line/adb.html#wireless

https://www.jianshu.com/p/afe8cd890723





你可能感兴趣的:(环境搭建,android,局域网,wi-fi,调试)