Debug Android applications over Wi-Fi
Note to self:
- Connect your Android device via USB, and make sure that USB debugging is working.
- Open the Android Adb Command Prompt
- Enter the following:
adb tcpip 5555
- Find the IP Address of the device:
adb shell netcfg
- Now connect to the device
adb connect <device.ip.address>:5555
- You should now be able to disconnect the device from USB and be able to debug over Wi-Fi
Comments