Modern SDK Platform Tools also work over Wi-Fi. How? After a USB connection authorizes a device, you can run adb tcpip 5555 . This restarts the adbd daemon to listen on port 5555 over the device’s Wi-Fi interface. Then, from your computer: adb connect 192.168.1.5:5555 .
The Android Debug Bridge operates on a three-part architecture designed to maintain a stable, asynchronous connection between a computer and a mobile device. 1. The Client