Skip to content

Instantly share code, notes, and snippets.

@marco-we
Last active August 29, 2015 14:16
Show Gist options
  • Save marco-we/9fa269f2a1efa94ef750 to your computer and use it in GitHub Desktop.
Save marco-we/9fa269f2a1efa94ef750 to your computer and use it in GitHub Desktop.
How to remote adb an Android device
Connect device via USB and make sure debugging is working.
adb tcpip 5555
adb connect <DEVICE_IP_ADDRESS>:5555
Disconnect USB and proceed with wireless debugging.
adb -s <DEVICE_IP_ADDRESS>:5555 usb to switch back when done.
(source: http://stackoverflow.com/questions/4893953/android-run-install-debug-applications-over-wifi)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment