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.
For Ubuntu / Linux:
./adb devices
to list the connected devices. Make sure it is only one device connected and no emulator running../adb shell
then netcfg
. You will see a list of IP addresses. Find wlan0
, in my case 192.168.100.3/2../adb tcpip 5555
./adb connect :5555
in your terminal. You can now deploy the application to your device over Wi-Fi.