Skip to content

Instantly share code, notes, and snippets.

@JoaquimLey
Last active October 7, 2021 00:18
Embed
What would you like to do?
Debug over WIFI

How to Debug with your device over WIFI

  1. Connect the device via USB and make sure debugging is enabled.

  2. Run adb tcpip 5555

  3. Find the IP address

MACOS: adb shell ip route

WINDOWS: adb shell netcfg

  1. Connect to your device adb connect <DEVICE_IP_ADDRESS>:5555

  2. Disconnect USB and proceed with wireless debugging.

EXTRA: To switch back to USB when done: adb -s <DEVICE_IP_ADDRESS>:5555 usb

No root required.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment