Last active
August 29, 2015 14:16
-
-
Save marco-we/9fa269f2a1efa94ef750 to your computer and use it in GitHub Desktop.
How to remote adb an Android device
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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