22 lines
994 B
XML
22 lines
994 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.godot"
|
|
android:versionCode="1"
|
|
android:versionName="1.0">
|
|
<application android:label="@string/godot" android:icon="@drawable/icon">
|
|
<activity android:name="Godot"
|
|
android:label="@string/godot"
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
|
android:launchMode="singleTask"
|
|
android:configChanges="orientation|keyboardHidden">
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
<uses-feature android:glEsVersion="0x00020000"/>
|
|
<uses-sdk android:minSdkVersion="8"/>
|
|
|
|
</manifest>
|