Skip to content

Instantly share code, notes, and snippets.

@benvium
Last active April 4, 2016 16:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benvium/e24ec7f76ce2e68b179eac9175cbda06 to your computer and use it in GitHub Desktop.
Save benvium/e24ec7f76ce2e68b179eac9175cbda06 to your computer and use it in GitHub Desktop.
Android: Set up WiFi Debugging
# 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