Skip to content

Instantly share code, notes, and snippets.

@ohodoa
Created April 10, 2018 02:41
Show Gist options
  • Save ohodoa/2ad6f6b4c409c151b5a0321c2103a977 to your computer and use it in GitHub Desktop.
Save ohodoa/2ad6f6b4c409c151b5a0321c2103a977 to your computer and use it in GitHub Desktop.
connect-to-android-with-adb-over-tcp
https://stackoverflow.com/questions/2604727/how-can-i-connect-to-android-with-adb-over-tcp
enable adb over wifi:
Code:
setprop service.adb.tcp.port 5555
stop adbd
start adbd
and to disable it:
Code:
setprop service.adb.tcp.port -1
stop adbd
start adbd
adb connect ***wifi.ip.address***:5555
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment