adb-无线连接,关联 android
- 参考
方法一 临时使用
- 手机USB连电脑,
adb devices
确保连接正常 adb tcpip 5555
重启手机上的adbd,开启网络调试功能- 断开手机和电脑的USB连接
adb connect 手机IP:5555
提示 connected 即连接成功adb devices
查看连接情况adb shell
直接进入shelladb disconnect 手机IP
断开连接
方法二 经常使用
需要root权限
在手机的/system/build.prop中增加一行配置:service.adb.tcp.port=5555(同样可以指定为其他值),实现开机就支持网络调试,不需要先USB连上手机。
可以先将/system/build.prop从手机中pull出来,修改后再push进去
1 2 3 4 5 6 7 8 9 10 11 | adb pull /system/build.prop . vim build.prop # 添加 service.adb.tcp.port=5555 adb push build.prop /system/ # failed to copy 'build.prop' to '/system//build.prop': Read-only file system adb remount adb push build.prop /system/ |
adb connect 断线,无法保持长时间连接
After lots of unsuccessful attempts,I have noticed that turning Allow ADB debugging in charge only mode
specification on , solved the problem . It makes the device online and accessable over wifi to ADB. You can find it under Developer options
section.