1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="net.minetest.minetest" android:installLocation="auto"> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <!-- `android:requestLegacyExternalStorage="true"` is workaround for using `/sdcard` instead of the `getFilesDir()` patch for assets. Check link below for more information: https://developer.android.com/training/data-storage/compatibility --> <application android:allowBackup="false" android:icon="@mipmap/ic_launcher" android:label="@string/label" android:resizeableActivity="false" android:requestLegacyExternalStorage="true" tools:ignore="UnusedAttribute"> <meta-data android:name="android.max_aspect" android:value="3" /> <activity android:name=".MainActivity" android:configChanges="orientation|keyboardHidden|navigation|screenSize" android:maxAspectRatio="3" android:screenOrientation="sensorLandscape" android:theme="@style/AppTheme"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".GameActivity" android:configChanges="orientation|keyboard|keyboardHidden|navigation|screenSize|smallestScreenSize" android:hardwareAccelerated="true" android:launchMode="singleTask" android:maxAspectRatio="3" android:screenOrientation="sensorLandscape" android:theme="@style/AppTheme"> <intent-filter> <action android:name="android.intent.action.MAIN" /> </intent-filter> <meta-data android:name="android.app.lib_name" android:value="Minetest" /> </activity> <activity android:name=".InputDialogActivity" android:maxAspectRatio="3" android:theme="@style/InputTheme" /> <service android:name=".UnzipService" android:enabled="true" android:exported="false" /> </application> </manifest>