ADB无线调试-免root
2016-03-23 小文字前言
平时开发的时候经常使用ADB WIFI,在局域网内可以实现ADB无线调试,但是有一个问题,过去一直是在root后的手机上使用,换手机后不想root,怎么办?
新设备福音【不保证所有设备可行性】
世界很奇妙,以前试了很多方法都无法通过简单操作解决非root手机的调试,那些市场上的所谓无需root的ADB WIFI多数没什么软用; 今天再次Google了一把,找到了解决方法,利用的任然是adb重定向相关;
下面已小米PAD为例:
- 通过USB链接设备与电脑,确保正确链接后,adb devices可以看见你的设备;
- 查询该设备的IP地址, 注意这里用不了ifconfig,需要用ip命令,不信你试试;
-
adb重定向,adb tcpip 5555
-
现在可以断开USB连接了,用上你熟悉的adb connect
没有意外的话应该就连接上了,如果提示操作超时,那多试几次,还不行的话,自谋多福了;
- 查看连接的设备
好了现在可以抛开数据线,愉快的调试起来吧!!
小结
adb有很多命令,感兴趣可以去开发者官网查阅 最后附上SO上,哥们的原回复:
The steps are correct, with one small part different: the connect step has to be done after taking out the cable. To reiterate follow the steps exactly as below and it will work for non-rooted devices also. I tested it with several non-rooted devices including Moto G, Nexus 1, Videocon etc.
Attach mobile via USB and type:
adb tcpip 5555 To find the mobile ip type:
adb shell ip -f inet addr show wlan0 The ip address will be shown in second line like this:
inet 192.168.1.233/24 brd 192.168.1.255 scope global wlan0 where 192.168.1.233 is the ip address of your mobile.
Remove USB cable and type:
adb connect mobile-ip:5555