保证电脑和手机处于同一网络下,Androidstudio3.0以上。
1、先用数据线连上
2、查看手机ip:adb shell ifconfig wlan0
其中inet addr就是手机ip
3、adb tcpip 5556
4、adb connect 手机ip:5556
5、查询设备:adb devices,OK了拔下数据线。
6、断开连接:adb disconnect 手机ip:5556
再次连接:adb connect 手机ip:5556就ok了
如果第三步错误
----->>>>
adb kill-server
adb start-server
然后再重复2345。