diff options
author | Rami Santina <[email protected]> | 2011-07-26 13:39:34 +0300 |
---|---|---|
committer | Rami Santina <[email protected]> | 2011-07-26 13:39:34 +0300 |
commit | e8a8fdda769277496772444fa4f99f863e9f355a (patch) | |
tree | 82f1be259c5ef67d57e32b8cc9ae7cfaae47b9ab /make/scripts | |
parent | 2488c4de3e5fe7c4b8258af3fb8aae9b4d5091ce (diff) |
Added android packaging for android gluegen-rt.apk
the apk package can be installed on android device
using adb install gluegen-rt.apk
reference package on device is com.jogamp.gluegen
gerenic icons is added to be replaced by jogamp logo
changes to apk can be controled thru manifest lib/android/AndroidManifest.xml
Diffstat (limited to 'make/scripts')
-rwxr-xr-x | make/scripts/make.gluegen.all.android-armv7-cross.sh | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/make/scripts/make.gluegen.all.android-armv7-cross.sh b/make/scripts/make.gluegen.all.android-armv7-cross.sh index 21f4263..5ac9a9d 100755 --- a/make/scripts/make.gluegen.all.android-armv7-cross.sh +++ b/make/scripts/make.gluegen.all.android-armv7-cross.sh @@ -9,14 +9,32 @@ export TARGET_IP=beagle01 export TARGET_ROOT=projects-cross export TARGET_ANT_HOME=/usr/share/ant +export ANDROID_SDK_VERSION=9 + +if [ $# -eq "0" ] ; then + echo "Usage: `basename $0` <ANDROID_SDK_HOME> <NDK_ROOT>" + echo "Default: ANDROID_SDK_HOME=/usr/local/android-sdk-linux_x86" + echo "Default: NDK_ROOT=/usr/local/android-ndk-r6" +fi + +if [ $# -ge "2" ] ; then +ANDROID_SDK_HOME=$1 +shift +NDK_ROOT=$1 +shift +fi + +echo $ANDROID_SDK_HOME +echo $NDK_ROOT + if [ -z "$NDK_ROOT" ] ; then - NDK_ROOT=/opt-linux-x86/android-ndk-r6 + NDK_ROOT=/usr/local/android-ndk-r6 fi export NDK_ROOT NDK_TOOLCHAIN=$NDK_ROOT/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/arm-linux-androideabi if [ -z "$ANDROID_SDK_HOME" ] ; then - ANDROID_SDK_HOME=/opt-linux-x86/android-sdk-linux_x86 + ANDROID_SDK_HOME=/usr/local/android-sdk-linux_x86 fi export ANDROID_SDK_HOME |