summaryrefslogtreecommitdiff
path: root/examples/android/AndroidManifest.xml
blob: 3c97c03606407715b564d4f744b0b155fa1f0cca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.sfml"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-feature android:glEsVersion="0x00010001" />

    <uses-sdk android:minSdkVersion="9"
              android:targetSdkVersion="19" />

    <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" />        
        <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>