I thought there was a way to test your applications in development over Wi-Fi. Is this possible?
I\'d love to be able to untether my phone and develop wirelessly.
To complete the answer of @usethe4ce, if you have more than one device or emulators, the adb tcpip 5555
will give error: more than one device/emulator
.
In this case you need to give the serial number of the desired device:
adb devices
List of devices attached
33001229 device
emulator-5554 device
adb -s 33001229 tcpip 5555
adb connect xxx.xxx.xxx.xxx:5555