我使用ADB over WiFi连接到Android设备。当我输入
adb connect <device ip>
我收到错误
empty hostname
答案 0 :(得分:13)
对我来说,只需重新启动adb即可解决问题
adb kill-server
adb start-server
答案 1 :(得分:3)
您需要更改设备上的net.hostname
属性。最简单的方法是通过设备上的root shell使用setprop
命令。
setprop net.hostname TypeAnyHostName
如果这对您不起作用,请参阅other solutions here。这是一个时间解决方案,问题会在一段时间后再次出现。