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 /make/resources | |
parent | 34cc391379bf5799466774d9c2209d8f69cd10e8 (diff) |
Android: Add jogl-test manifest. APK scripts
Diffstat (limited to 'make/resources')
-rw-r--r-- | make/resources/android/AndroidManifest-test.xml | 17 |
1 files changed, 17 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> |