Files
shattered-pixel-dungeon-web…/android/src/main/AndroidManifest.xml
2024-09-16 12:14:19 -04:00

52 lines
1.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:installLocation="auto"
android:targetSandboxVersion="2"
xmlns:dist="http://schemas.android.com/apk/distribution">
<dist:module dist:instant="true" />
<uses-feature android:glEsVersion="0x00020000"/>
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<!-- We perform a runtime check to ensure controllers are disabled on API 14 & 15 -->
<uses-sdk tools:overrideLibrary="com.badlogicgames.gdx.controllers" />
<!-- Note that the game doesn't truly support small screen resolutions,
it instead forces downscaling to work on these displays.-->
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"/>
<application
android:icon="@mipmap/ic_launcher"
android:label="${appName}"
android:theme="@android:style/Theme.Black.NoTitleBar"
android:appCategory="game"
android:isGame="true"
android:resizeableActivity="true"
android:allowBackup="true"
android:fullBackupOnly="true"
android:backupAgent=".AndroidBackupHandler">
<activity
android:name=".AndroidLauncher"
android:screenOrientation="nosensor"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|screenLayout|smallestScreenSize"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".AndroidMissingNativesHandler">
</activity>
</application>
</manifest>