I\'m basically trying to do this: How can I connect to Android with ADB over TCP? with the Droid X2.
I have USB Debugging on, and my phone is plugged in via USB. The
With my phone, this problem happens a lot. I get these symptoms:
ping x.x.x.x
times outadb connect x.x.x.x
times out ("unable to connect")telnet x.x.x.x 5555
times outI need to disable and re-enable WiFi on my phone before running adb connect
on my computer. Then I can both ping
, telnet
, and adb connect
to the phone.
I'm using a Sony Xperia M C1904 running CyanogenMod 12.1.
I hope this will helpful and worked for me
I couldn't connect adb to my Nexus5 Phone over 5Ghz WLAN but it did work with the slower 2,4 Ghz instantly.
The problem with me for my Samsung Tab 1 was an adb process was already running on port 5037 on my Xubuntu 14.04 machine, which I was unaware about until I typed pgrep -l -u username
. To fix this, I terminated the adb process using pkill adb
, navigated to my platform tools folder and ran adb tcpip 5037
and then connected to my device using the 5037
port number. Boom! Worked like a charm.
Your device hasn't to be rooted. I've developed a plugin for IntelliJ/Android Studio to connect your device over wifi pressing just one button. Here is the code and here the plugin ready to be used.
The usage is quite simple. Here you have a gif:
Android wifi ADB was earlier working on my IDE but after Updating Android Studio (my current is Android Studio 3.3) it is not working and always prompt as "Unable to connect to device......Same network"
After spending much time i was unbale to resolve the issue.
Then i tried - WIFI ADB ULTIMATE by
https://github.com/huazhouwang/WIFIADB/tree/master/WIFIADBIntelliJPlugin
It worked for me.