Neon is a Advanced Bundler Installer for Termux, Install XAPK/APKM packages with root or ADB.
- Android device with Termux installed
- Root or ADB access: if you dont have root and haven't connected termux to ADB? click here for instructions
apt update -y && apt upgrade -y
apt install wget -y
wget https://github.com/adivenxnataly/Neon-Termux/releases/download/1.0.0/neon-termux.deb
apt install ~/neon-termux.debNeon - Advanced Bundle Installer for Termux v1.0.0 @adivenxnataly 2025,
Install XAPK/APKM packages with root or ADB.
usage: neon [options] <package>
required arguments:
package : Path to XAPK/APKM file
optional options:
-h, --help : Show this help message and exit
-v, --version : Show version information
-q, --quiet : Suppress output messages
-n, --no-clean : Keep extracted files after installation
flags options:
-d : Allow version code downgrade
-t : Allow test packages installation
-r : Replace existing application
-i : Specify installer package name
advanced options:
--install-options : Custom installation options (based on `pm install` arguments)
--adb-port <port> : ADB server port (default: 5555)neon --install-option="--bypass-verification --bypass-low-target-sdk-block" /path/to/bundle.xapkNote
Using --install-option allows you to use flags according to the SDK version, where each SDK has different flag rules, such as -t for testing, but on Android 13 (SDK 33) the use of flags to --test-only is a recognized flag. like the above flag --bypass-low-target-sdk is not be available on Android 12 (SDK 31).
by default the port will use 55555 which will not connect automatically even if Wireless Debugging is on (but not connected to termux yet), so I added an option to do: adb connect ip-address:port directly together with the command just by entering a valid port, which you can see in:
Developer Options -> Wireless Debugging -> IP Address & Port
neon --adb-port 45817 /path/to/bundle.apkmthis will make it automatically connect to adb, and run the installation directly.
ADB Port & Flags
neon --adb-port 45817 -d -t /path/to/bundle.xapkADB Port & Install Options
neon --adb-port 45817 --install-option="--bypass-low-target-sdk-block --test-only" /path/to/bundle.apkmadivenxnataly - this is my own project.
