Last active
April 4, 2016 16:32
-
-
Save benvium/e24ec7f76ce2e68b179eac9175cbda06 to your computer and use it in GitHub Desktop.
Android: Set up WiFi Debugging
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 Android Device via USB cable | |
# Type in terminal | |
adb tcpip 5555 | |
# > restarting in TCP mode port: 5555 | |
# Find android device's IP with (Settings/About/Status) | |
adb connect X.X.X.X | |
# > connected to X.X.X.X | |
# Unplug USB cable. | |
adb devices | |
# > List of devices attached | |
# > 10.0.1.166:5555 device | |
# Now you can adb install X, use Android Studio debugging. Everything! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment