diff options
author | Sven Gothel <[email protected]> | 2011-09-28 17:41:47 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-09-28 17:41:47 +0200 |
commit | cc9ab3d4e1ed2c7b9d38a9599a37abd05be36cc0 (patch) | |
tree | f654195be492f24ac73547dfa2a98ba713719bf9 | |
parent | 34cc391379bf5799466774d9c2209d8f69cd10e8 (diff) |
Android: Add jogl-test manifest. APK scripts
-rw-r--r-- | make/resources/android/AndroidManifest-test.xml | 17 | ||||
-rw-r--r-- | make/scripts/adb-install-all.sh | 4 | ||||
-rw-r--r-- | make/scripts/adb-uninstall-all.sh | 4 |
3 files changed, 25 insertions, 0 deletions
diff --git a/make/resources/android/AndroidManifest-test.xml b/make/resources/android/AndroidManifest-test.xml new file mode 100644 index 000000000..80539cf26 --- /dev/null +++ b/make/resources/android/AndroidManifest-test.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + sharedUserId="com.jogamp.Community" + package="com.jogamp.opengl.test"> + + <uses-sdk android:minSdkVersion="9" /> + <uses-library android:name="com.jogamp.common" android:required="true" /> + <uses-library android:name="javax.media.opengl" android:required="true" /> + + <application android:icon="@drawable/icon" + android:label="@string/app_name" + android:description="@string/app_descr" + android:persistent="false" + > + </application> + +</manifest> diff --git a/make/scripts/adb-install-all.sh b/make/scripts/adb-install-all.sh new file mode 100644 index 000000000..e266ae22d --- /dev/null +++ b/make/scripts/adb-install-all.sh @@ -0,0 +1,4 @@ +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.android-launcher.apk +adb install ../build-android-armv7/jar/jogl.test.apk diff --git a/make/scripts/adb-uninstall-all.sh b/make/scripts/adb-uninstall-all.sh new file mode 100644 index 000000000..db079fcf0 --- /dev/null +++ b/make/scripts/adb-uninstall-all.sh @@ -0,0 +1,4 @@ +adb uninstall com.jogamp.common +adb uninstall javax.media.opengl +adb uninstall com.jogamp.android.launcher +adb uninstall com.jogamp.opengl.test |