summaryrefslogtreecommitdiffstats
path: root/make/lib/android/AndroidManifest.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-07-28 01:32:30 +0200
committerSven Gothel <[email protected]>2011-07-28 01:32:30 +0200
commitb7f833cf07c80a137b54d250f035c9dc56e20988 (patch)
tree7fa74f1b8bac597f50ed736a8ed91355a14b29f5 /make/lib/android/AndroidManifest.xml
parentac4d6a49c9cf615386f20ddced59c33d44dd8c32 (diff)
parent6b3d6b97bdee99d1057be074879ec80d639101e8 (diff)
Merge remote-tracking branch 'rsantina/wip_mobile' into wip_mobile
Diffstat (limited to 'make/lib/android/AndroidManifest.xml')
-rw-r--r--make/lib/android/AndroidManifest.xml18
1 files changed, 18 insertions, 0 deletions
diff --git a/make/lib/android/AndroidManifest.xml b/make/lib/android/AndroidManifest.xml
new file mode 100644
index 0000000..7ddeac8
--- /dev/null
+++ b/make/lib/android/AndroidManifest.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.jogamp.gluegen"
+ android:versionCode="1"
+ android:versionName="1.0">
+ <uses-sdk android:minSdkVersion="8" />
+
+ <application android:icon="@drawable/icon" android:label="@string/app_name">
+ <activity android:name=".GluegenActivity"
+ android:label="@string/app_name">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+
+ </application>
+</manifest>