Skip to content

Instantly share code, notes, and snippets.

@tmatz
Last active August 24, 2025 16:35
Show Gist options
  • Save tmatz/817bf03433e059bf89c63dc33f286ccb to your computer and use it in GitHub Desktop.
Save tmatz/817bf03433e059bf89c63dc33f286ccb to your computer and use it in GitHub Desktop.
Build android app on termux

Build android app on termux

1. install termux

install termux from F-Droid.

2. setup termux

apt update
apt upgrade
# source.list changed
apt update
termux-setup-storage

3. install ubuntu

apt install git wget proot
git clone https://github.com/MFDGaming/ubuntu-in-termux.git
cd ubuntu-in-termux
# install ubuntu
bash ubuntu.sh -y
# fix PATH order
sed -Ei 's|(:/bin)(:/usr/bin):|\2\1:|' startubuntu.sh
# start
./startubuntu.sh

4. install packages for build

Now, in ubuntu.

apt update
apt upgrade
apt install default-jdk-headless openjdk-8-jdk-headless unzip aapt2

5. install android cmdline-tools and platforms

Download Android Command Line Tools for Linux from https://developer.android.com/studio

cd ~
unzip /sdcard/Download/commandlinetools-linux-9477386_latest.zip
export ANDROID_HOME=$HOME/android/sdk
mkdir -p $ANDROID_HOME/cmdline-tools
mv cmdline-tools $ANDROID_HOME/cmdline-tools/latest
export PATH=$PATH:$ANDROID_HOME/cmdline-tools/latest/bin
# just for fix broken dependencies
JAVA_OPTS=-Dos.arch=amd64 sdkmanager emulator
# install target platforms
sdkmanager 'platforms;android-26'

5. replace aapt2

cd project-dir
echo "sdk.dir=$ANDROID_HOME" > local.properties
alias gradlew='JAVA_HOME=/usr/lib/jvm/java-8-openjdk-arm64 bash ./gradlew'
# first build should fail. it is for downloading aapt2-*-linux.jar
gradlew
# replace aapt2 binary for arm64
find ~/.gradle -name 'aapt2-*-linux.jar' -type f | xargs -I{} jar -u -f {} -C /usr/bin aapt2

6. build apk!

cd project-dir
gradlew
@kristian-nygaard-jensen
Copy link

dear @tmatz

What does this line do?

find ~/.gradle -name 'aapt2-*-linux.jar' -type f | xargs -I{} jar -u -f {} -C /usr/bin aapt2

@tmatz
Copy link
Author

tmatz commented Mar 1, 2025

@kristian-nygaard-jensen
aapt2-*-linux.jar includes aapt2, but it is built for amd64.
jar -u -f aapt2-*-linux.jar -C /usr/bin aapt2 replaces aapt2 in the archive by installed one which is built for arm64.

@Benjamin-Loison
Copy link

For API version 35 be aware of termux/termux-packages#22667.

@tmatz
Copy link
Author

tmatz commented May 26, 2025

Why is AndroidIDE abandaoned? Too sad...

@ScreenNamePlus1
Copy link

E: Unable to locate package aapt2

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