diff options
author | Sven Gothel <[email protected]> | 2013-01-31 23:21:05 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-01-31 23:21:05 +0100 |
commit | b827223da34ae4d2970a7b27f9bc0efa96bcac5a (patch) | |
tree | 416a33b3ab14b8a556191fed374a768a2a247e48 /make/resources/android/AndroidManifest-test.xml | |
parent | 034a6d264385e89e289713cb7f43a7020d6d3c46 (diff) |
Android Build & Test ; WavLoader/Data javax.audio separation (part-1)
Diffstat (limited to 'make/resources/android/AndroidManifest-test.xml')
-rw-r--r-- | make/resources/android/AndroidManifest-test.xml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/make/resources/android/AndroidManifest-test.xml b/make/resources/android/AndroidManifest-test.xml new file mode 100644 index 0000000..71b0791 --- /dev/null +++ b/make/resources/android/AndroidManifest-test.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + sharedUserId="com.jogamp.Community" + package="com.jogamp.openal.test"> + + <uses-feature android:name="android.hardware.touchscreen" android:required="false" /> + <!-- uses-feature android:name="android.hardware.camera" android:required="false" / --> <!-- not yet --> + + <uses-library android:name="com.jogamp.common" android:required="true" /> + <uses-library android:name="com.jogamp.openal" android:required="true" /> + <uses-library android:name="jogamp.android.launcher" android:required="true" /> + + <uses-sdk android:minSdkVersion="9" /> + + <application android:icon="@drawable/icon" + android:label="@string/app_name" + android:description="@string/app_descr" + android:persistent="false" + > + + <activity android:name="com.jogamp.openal.test.android.OpenALTestActivityLauncher" + android:label="@string/activity_openaltest1_name" + android:description="@string/activity_openaltest1_descr" + android:theme="@android:style/Theme.NoDisplay" + > + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + <category android:name="android.intent.category.LAUNCHER" /> + </intent-filter> + </activity> + </application> + +</manifest> |