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 | |
parent | 034a6d264385e89e289713cb7f43a7020d6d3c46 (diff) |
Android Build & Test ; WavLoader/Data javax.audio separation (part-1)
Diffstat (limited to 'make/resources')
-rw-r--r-- | make/resources/android/AndroidManifest-test.xml | 33 | ||||
-rw-r--r-- | make/resources/android/res-test/drawable-hdpi/icon.png | bin | 0 -> 2516 bytes | |||
-rw-r--r-- | make/resources/android/res-test/drawable-ldpi/icon.png | bin | 0 -> 1172 bytes | |||
-rw-r--r-- | make/resources/android/res-test/drawable-mdpi/icon.png | bin | 0 -> 1570 bytes | |||
-rw-r--r-- | make/resources/android/res-test/layout/main.xml | 12 | ||||
-rw-r--r-- | make/resources/android/res-test/values/strings.xml | 8 | ||||
-rw-r--r-- | make/resources/assets-test/placeholder.txt | 1 |
7 files changed, 54 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> diff --git a/make/resources/android/res-test/drawable-hdpi/icon.png b/make/resources/android/res-test/drawable-hdpi/icon.png Binary files differnew file mode 100644 index 0000000..2148232 --- /dev/null +++ b/make/resources/android/res-test/drawable-hdpi/icon.png diff --git a/make/resources/android/res-test/drawable-ldpi/icon.png b/make/resources/android/res-test/drawable-ldpi/icon.png Binary files differnew file mode 100644 index 0000000..c16211f --- /dev/null +++ b/make/resources/android/res-test/drawable-ldpi/icon.png diff --git a/make/resources/android/res-test/drawable-mdpi/icon.png b/make/resources/android/res-test/drawable-mdpi/icon.png Binary files differnew file mode 100644 index 0000000..1c26e3f --- /dev/null +++ b/make/resources/android/res-test/drawable-mdpi/icon.png diff --git a/make/resources/android/res-test/layout/main.xml b/make/resources/android/res-test/layout/main.xml new file mode 100644 index 0000000..3a5f117 --- /dev/null +++ b/make/resources/android/res-test/layout/main.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:orientation="vertical" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + > +<TextView + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:text="@string/hello" + /> +</LinearLayout> diff --git a/make/resources/android/res-test/values/strings.xml b/make/resources/android/res-test/values/strings.xml new file mode 100644 index 0000000..597fc4a --- /dev/null +++ b/make/resources/android/res-test/values/strings.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string name="hello">Joal Test</string> + <string name="app_name">Joal Tests</string> + <string name="app_descr">Launches Joal Tests.</string> + <string name="activity_openaltest1_name">OALTest1</string> + <string name="activity_openaltest1_descr">OALTest1</string> +</resources> diff --git a/make/resources/assets-test/placeholder.txt b/make/resources/assets-test/placeholder.txt new file mode 100644 index 0000000..efb91aa --- /dev/null +++ b/make/resources/assets-test/placeholder.txt @@ -0,0 +1 @@ +placeholder for git - can be removed when containing real assets for tests |