Skip to content

Instantly share code, notes, and snippets.

@beginor
Created December 13, 2013 09:26
Show Gist options
  • Save beginor/7941881 to your computer and use it in GitHub Desktop.
Save beginor/7941881 to your computer and use it in GitHub Desktop.
debug android device over wifi
# enable on rooted device
su
setprop service.adb.tcp.port 5555
stop adbd
start adbd
#disable on rooted device
setprop service.adb.tcp.port -1
stop adbd
start adbd
# for simple, just install https://play.google.com/store/apps/details?id=com.ttxapps.wifiadb
# connect to wifi debug enabled device
adb connect <your device ip>
# disconnect from wifi debug enabled device
adb disconnect <your device ip>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment