diff options
-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 |