Unofficial Geode Command Line Port for Android (Termux)
The releases include an archive with a binary based on Android ARM64, which can be used for Termux. After installing the release, unzip the archive and transfer the binary to the Termux home directory using the command:
# Granting access rights to the storage
termux-setup-storage
# We transfer the binary to the Termux home directory
mv ~/path/to/binary ~Or use curl:
curl -o geode.zip https://github.com/Fleyzix76/Geode-CLI-4Android-Termux-/releases/download/port/geode-cli-v3.7.4-android64.zip
# Unzip the archive using unzip
unzip geode.zip
# You can move the binary to your home directory
mv geode/geode ~Grant permission to execute:
chmod +x geodeAnd run the binary:
./geode
# Or
bash geodeYou will see the geode commands
After installing Geode CLI, you can create your own mod, following the instructions from Geode Docs, but instead of geode you will need to use ./geode or bash geode
# Without ./
geode new❌️
geode build❌️
# With ./ and bash
./geode new✅️
bash geode build✅️I can't compile Geode CLI for ARM32 (ARMv7), so this method is only available for ARM64 (aarch64)😭
(I am not responsible for problems with Android NDK )