MBHaxe/Export/android/app/src/main/AndroidManifest.xml
2025-02-10 21:02:05 +05:30

37 lines
No EOL
1.5 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.randomityguy.mbhaxe.mbu"
android:installLocation="auto"
android:versionCode="6"
android:versionName="2.2.0">
<!-- Tell the system this app requires OpenGL ES 3.0. -->
<uses-feature android:glEsVersion="0x00030000" android:required="true" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:hardwareAccelerated="true"
android:usesCleartextTraffic="true"
android:debuggable="true">
<activity android:name="org.haxe.HashLinkActivity"
android:label="@string/app_name"
android:orientation="horizontal"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:exported="true"
android:screenOrientation="sensorLandscape"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>