mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2026-03-06 20:11:10 +00:00
30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Replace com.example.heapsandroid.helloword with the identifier of your game below, e.g.
|
|
com.gamemaker.game -->
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.example.heapsandroid.helloworld"
|
|
android:installLocation="auto"
|
|
android:versionCode="1"
|
|
android:versionName="1.0">
|
|
|
|
<!-- Tell the system this app requires OpenGL ES 3.0. -->
|
|
<uses-feature android:glEsVersion="0x00030000" android:required="true" />
|
|
|
|
<application android:label="@string/app_name"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
|
android:hardwareAccelerated="true">
|
|
|
|
<activity android:name="org.haxe.HashLinkActivity"
|
|
android:label="@string/app_name"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
|
|
android:exported="true"
|
|
>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest>
|