Skip to content

Instantly share code, notes, and snippets.

@kairusds
Last active March 23, 2025 16:17
Show Gist options
  • Save kairusds/1d4e32d3cf0d6ca44dc126c1a383a48d to your computer and use it in GitHub Desktop.
Save kairusds/1d4e32d3cf0d6ca44dc126c1a383a48d to your computer and use it in GitHub Desktop.
Instructions for connecting Termux's android-tools adb to the current device via Wireless debugging and fixing phantom process killing

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 the Wireless 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 as IP address & Port.


After you're done with adb, make sure to close the daemon:

adb kill-server

After Termux has connected via Wireless debugging, run the command below to fix phantom process killing. (Android 12L and above)

adb shell "settings put global settings_enable_monitor_phantom_procs false"
@Rudxain
Copy link

Rudxain commented Jan 20, 2025

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?

@weskerty
Copy link

I hate that the pairing-port and connection-port are always different.

Google thing
A question of "security"

@Rudxain
Copy link

Rudxain commented Jan 21, 2025

A question of "security"

lol. I guess that's fair

@AlexanderMcColl
Copy link

Just wanted to say thank you so much for this guide, it made setting up Wavelet a breeze.

@kairusds
Copy link
Author

Just wanted to say thank you so much for this guide, it made setting up Wavelet a breeze.

you're welcome :)

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