diff options
author | Sven Gothel <[email protected]> | 2012-06-15 05:21:43 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-06-15 05:21:43 +0200 |
commit | 54d0ff131097a2cd9a91a0c1dd84deb8b1f7d0ac (patch) | |
tree | cea4abac21e1447c8725e8bd28abf031be4dbedd /make/scripts/adb-install-all-armv7.sh | |
parent | cf51a97f04011ce643c42d6872f37cc69f4342aa (diff) |
Fix Bug 583: Remove Android compile-time dependencies and exclude Android specific classes for non Android platforms.
Adapt to GlueGen commits: b3c9951006f9bd863244f1db3d54ac7866d66f0a, 86c1df6fdca183454ff544857f4236b646c4730d
Ensure same Java JAR content regardless of build target (fix).
Separate Android compilation results: jogl.all-android.jar and jogl.test-android.jar
avoiding generating different content w/ non android builds.
Adding ${android.abi} to APK target name (jogl.all-android.apk -> jogl.all-android-armeabi-v7a.apk)
if not generic.
Diffstat (limited to 'make/scripts/adb-install-all-armv7.sh')
-rwxr-xr-x | make/scripts/adb-install-all-armv7.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/make/scripts/adb-install-all-armv7.sh b/make/scripts/adb-install-all-armv7.sh index 503c6f2f7..fe9765541 100755 --- a/make/scripts/adb-install-all-armv7.sh +++ b/make/scripts/adb-install-all-armv7.sh @@ -1,4 +1,4 @@ -adb $* install ../../gluegen/build-android-armv7/jogamp.android-launcher.apk -adb $* install ../../gluegen/build-android-armv7/gluegen-rt.apk -adb $* install ../build-android-armv7/jar/jogl.all-android.apk -adb $* install ../build-android-armv7/jar/jogl.test.apk +#adb $* install ../../gluegen/build-android-armv7/jogamp.android-launcher.apk +#adb $* install ../../gluegen/build-android-armv7/gluegen-rt-android-armeabi-v7a.apk +adb $* install ../build-android-armv7/jar/jogl.all-android-armeabi-v7a.apk +adb $* install ../build-android-armv7/jar/jogl.test-android.apk |