android_terminal/tools/build-release
Jack Palevich 8a6f7e50b4 Upgrade personal build scripts
Use environment variable ANDROID_NDK_ROOT instead of hard coded path.

These scripts still aren't useful for anyone besides me. Sorry!
2012-05-06 10:48:50 -07:00

11 lines
382 B
Bash
Executable File

#!/bin/bash
# command line build script for building release version
# This will only work on my (Jack Palevich) computer, because it
# requires the private key store used o sign the release version
# of Android Terminal Emulator.
cd ~/code/Android-Terminal-Emulator
rm -rf bin obj
cd jni
$ANDROID_NDK_ROOT/ndk-build && cd .. && ant release && mv bin/Term-release.apk bin/Term.apk