summaryrefslogtreecommitdiff
path: root/examples/android/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorJames Cowgill <jcowgill@debian.org>2018-05-15 13:58:15 +0100
committerJames Cowgill <jcowgill@debian.org>2018-05-15 13:58:15 +0100
commitb175eed3ca950204c9b52fdcebc897f337b7bf19 (patch)
tree0f50d921750c957f11bda18abc83f9228d010902 /examples/android/app/src/main/AndroidManifest.xml
parent31394fcd65a10f2d2c51c3d27afff5367bded901 (diff)
New upstream version 2.5.0+dfsg
Diffstat (limited to 'examples/android/app/src/main/AndroidManifest.xml')
-rw-r--r--examples/android/app/src/main/AndroidManifest.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/examples/android/app/src/main/AndroidManifest.xml b/examples/android/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..20fbbe5
--- /dev/null
+++ b/examples/android/app/src/main/AndroidManifest.xml
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="org.sfmldev.android"
+ android:versionCode="1"
+ android:versionName="1.0" >
+
+ <uses-feature android:glEsVersion="0x00010001" />
+
+ <uses-sdk android:minSdkVersion="14"
+ android:targetSdkVersion="19" />
+
+ <uses-permission android:name="android.permission.VIBRATE" />
+
+ <application android:label="@string/app_name"
+ android:icon="@drawable/sfml_logo"
+ android:hasCode="false"
+ android:allowBackup="true">
+
+ <activity android:name="android.app.NativeActivity"
+ android:label="@string/app_name"
+ android:icon="@drawable/sfml_logo"
+ android:configChanges="keyboardHidden|orientation|screenSize">
+
+ <meta-data android:name="android.app.lib_name" android:value="sfml-activity-d" />
+ <meta-data android:name="sfml.app.lib_name" android:value="sfml-example" />
+
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+</manifest>