Run ADB over WiFi after USB debugging is working. Default TCP port is 5555.
Setup
- Download and install the Google USB driver from SDK Manager.
- Install the vendor-specific driver.
- Enable USB debugging on the device.
Connect
SU
On a rooted device:
su
setprop service.adb.tcp.port 5555
stop adbd
start adbdNon-SU
- Connect via USB and list devices:
adb devices- Restart ADB on the client (debugger) in TCP mode. Default port is 5555. Compulsory on Mac:
adb tcpip [port]
adb tcpip 5555It should say restarting in TCPIP mode. Another program using ADB, like Android Studio, should not be running.
- Disconnect USB.
- Reconnect to ADB on WiFi. Example IP
192.168.1.31. Default port is 5555:
adb connect <IP>[:port]Reconnect on USB
adb usbkill-server if ADB is already running.
Backup
backup -f ~/data.ab -noapk app.package.nameUpdated:
2026 Aug 19

