You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
4.3 KiB
103 lines
4.3 KiB
<?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"> |
|
|
|
<!-- OpenGL ES 2.0 --> |
|
<uses-feature android:glEsVersion="0x00020000" /> |
|
|
|
<!-- Touchscreen support --> |
|
<uses-feature |
|
android:name="android.hardware.touchscreen" |
|
android:required="false" /> |
|
|
|
<!-- Game controller support --> |
|
<uses-feature |
|
android:name="android.hardware.bluetooth" |
|
android:required="false" /> |
|
<uses-feature |
|
android:name="android.hardware.gamepad" |
|
android:required="false" /> |
|
<uses-feature |
|
android:name="android.hardware.usb.host" |
|
android:required="false" /> |
|
|
|
<!-- External mouse input events --> |
|
<uses-feature |
|
android:name="android.hardware.type.pc" |
|
android:required="false" /> |
|
|
|
<uses-feature |
|
android:name="android.software.leanback" |
|
android:required="false" /> |
|
|
|
<!-- Required for downloading shareware data on older devices --> |
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="22" /> |
|
<!-- Allow access to Bluetooth devices --> |
|
<!-- Currently this is just for Steam Controller support and requires setting SDL_HINT_JOYSTICK_HIDAPI_STEAM --> |
|
<!-- <uses-permission android:name="android.permission.BLUETOOTH" android:maxSdkVersion="30" /> --> |
|
<!-- <uses-permission android:name="android.permission.BLUETOOTH_CONNECT" /> --> |
|
|
|
<!-- Allow access to the vibrator --> |
|
<uses-permission android:name="android.permission.VIBRATE" /> |
|
<!-- Allow access to the network for multiplayer and demo download --> |
|
<uses-permission android:name="android.permission.INTERNET" /> |
|
|
|
<application android:label="@string/app_name" |
|
android:icon="@mipmap/ic_launcher" |
|
android:banner="@drawable/banner" |
|
android:allowBackup="true" |
|
android:fullBackupContent="@xml/backup_descriptor" |
|
android:dataExtractionRules="@xml/backup_rules" |
|
tools:targetApi="s" |
|
android:isGame="true" |
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" |
|
android:hardwareAccelerated="true"> |
|
|
|
<!-- Example of setting SDL hints from AndroidManifest.xml: |
|
<meta-data android:name="SDL_ENV.SDL_ACCELEROMETER_AS_JOYSTICK" android:value="0"/> |
|
--> |
|
|
|
<activity android:name="org.diasurgical.devilutionx.DevilutionXSDLActivity" |
|
android:label="@string/app_name" |
|
android:windowSoftInputMode="adjustPan" |
|
android:alwaysRetainTaskState="true" |
|
android:launchMode="singleInstance" |
|
android:configChanges="layoutDirection|locale|orientation|uiMode|screenLayout|screenSize|smallestScreenSize|keyboard|keyboardHidden|navigation" |
|
android:preferMinimalPostProcessing="true" |
|
android:screenOrientation="landscape" |
|
android:exported="true" |
|
> |
|
<intent-filter> |
|
<action android:name="android.intent.action.MAIN" /> |
|
<category android:name="android.intent.category.LAUNCHER" /> |
|
<category android:name="android.intent.category.LEANBACK_LAUNCHER" /> |
|
</intent-filter> |
|
<!-- Let Android know that we can handle some USB devices and should receive this event --> |
|
<intent-filter> |
|
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" /> |
|
</intent-filter> |
|
<!-- Drop file event --> |
|
<!-- |
|
<intent-filter> |
|
<action android:name="android.intent.action.VIEW" /> |
|
<category android:name="android.intent.category.DEFAULT" /> |
|
<data android:mimeType="*/*" /> |
|
</intent-filter> |
|
--> |
|
<!-- Location where shortcuts for the app are defined --> |
|
<meta-data |
|
android:name="android.app.shortcuts" |
|
android:resource="@xml/shortcuts" /> |
|
</activity> |
|
|
|
<activity android:name=".DataActivity" |
|
android:theme="@style/Theme.MyApplication"> |
|
</activity> |
|
|
|
<activity android:name=".ImportActivity" |
|
android:theme="@style/Theme.MyApplication"> |
|
</activity> |
|
</application> |
|
|
|
</manifest>
|
|
|