On Windows, Adb Connects To Wrong Port 5037 Instead Of 5555
Debugging an Android App over WiFi. I am using WiFi ADB App to prepare the Android Device for the connection over Wifi. All seems well on that end. Next, I need to connect adb as f
Solution 1:
On Windows, in the console, the solutions appears to be (?)
adb kill-server
SET ANDROID_ADB_SERVER_PORT=5555
adb connect192.168.2.8:5555
AndroidStudio finds the device after the extra adb tcpip 5555
statement.
update:
The above does not appear to be the solution, at least not in 100% of the cases. Still haven't found something that works and is reproducible...
Post a Comment for "On Windows, Adb Connects To Wrong Port 5037 Instead Of 5555"