mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
9f6f02f988
This is only implemented for Android builds and requires the user to include the sub-header specifically. Other platforms will trigger a compiler error, if they try to include this header file.
35 lines
1.2 KiB
XML
35 lines
1.2 KiB
XML
<?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" />
|
|
|
|
<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" />
|
|
<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>
|