diff options
author | Sven Gothel <[email protected]> | 2011-07-28 15:27:17 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-07-28 15:27:17 +0200 |
commit | dcaa3cb5cabfa11ae88fad266b54a1690148edf9 (patch) | |
tree | 52bdb20815315a7eda69539c3e01806c15457893 /make/scripts | |
parent | 02641c4d08853a1e0131336968f691fde8a30043 (diff) |
Fix Android apk activity; Add apk VersionName; Add jar manifest to apk
- build:
- exclude android packages if !isAndroid
- aapt:
- Use individual AndroidManifest xml files
- optional: incl. our JAR manifest file to support detailed version info
- use def. GluegenVersionActivity
- APK VersionName: Retrieve and show
- package/extension names:
- gluegen.jar/apk: com.jogamp.gluegen
- gluegen-rt.jar/apk: com.jogamp.common
Diffstat (limited to 'make/scripts')
-rw-r--r-- | make/scripts/crosstest-java-android-armv7-rel.sh | 1 | ||||
-rw-r--r-- | make/scripts/crosstest-java-linux-armv7-rel.sh | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/make/scripts/crosstest-java-android-armv7-rel.sh b/make/scripts/crosstest-java-android-armv7-rel.sh index 822d03d..4a1b4b9 100644 --- a/make/scripts/crosstest-java-android-armv7-rel.sh +++ b/make/scripts/crosstest-java-android-armv7-rel.sh @@ -24,6 +24,7 @@ fi #TSTCLASS=com.jogamp.gluegen.test.junit.generation.Test1p1JavaEmitter #TSTCLASS=com.jogamp.gluegen.test.junit.generation.Test1p2ProcAddressEmitter TSTCLASS=com.jogamp.common.GlueGenVersion +# am start -a android.intent.action.MAIN -n com.jogamp.common/jogamp.common.os.android.GluegenVersionActivity LOGFILE=`basename $0 .sh`.log diff --git a/make/scripts/crosstest-java-linux-armv7-rel.sh b/make/scripts/crosstest-java-linux-armv7-rel.sh index efeb0ea..f49383a 100644 --- a/make/scripts/crosstest-java-linux-armv7-rel.sh +++ b/make/scripts/crosstest-java-linux-armv7-rel.sh @@ -8,7 +8,8 @@ export TARGET_ROOT=projects-cross export BUILD_DIR=../build-linux-armv7 -TSTCLASS=com.jogamp.gluegen.test.junit.generation.Test1p2ProcAddressEmitter +#TSTCLASS=com.jogamp.gluegen.test.junit.generation.Test1p2ProcAddressEmitter +TSTCLASS=com.jogamp.common.GlueGenVersion LOGFILE=`basename $0 .sh`.log |