Install android-tools if you haven't already:
pkg update ; pkg upgrade
pkg install android-tools
adb pair localhost:port
Where port is taken from the menu shown after clicking from
Developer options > Wireless debugging > Pair device with pairing code
. Use splitscreen to show theWireless debugging
setting below the Termux app when pairing.
After pairing successfully, run the following commands to either connect or disconnect:
adb connect localhost:port
adb disconnect
Where port is shown in the
Wireless debugging
menu asIP address & Port
.
After you're done with adb, make sure to close the daemon:
adb kill-server
I hate that the pairing-port and connection-port are always different. It caused me so many headaches when I tried to do the setup without tutorials. Is this Google's fault or a technical limitation of TCP/IP?