2016-04-13 20:14:04 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-11-07 00:39:39 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-12-03 00:39:35 +01:00
|
|
|
package="net.minetest.minetest"
|
|
|
|
android:installLocation="auto">
|
|
|
|
|
2016-04-13 20:14:04 +02:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2018-12-03 00:39:35 +01:00
|
|
|
|
2020-05-04 08:47:00 +02:00
|
|
|
<!--
|
|
|
|
`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
|
|
|
|
-->
|
|
|
|
|
2018-12-03 00:39:35 +01:00
|
|
|
<application
|
2020-04-15 16:27:40 +02:00
|
|
|
android:allowBackup="false"
|
2018-12-03 00:39:35 +01:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2020-04-15 16:27:40 +02:00
|
|
|
android:label="@string/label"
|
2020-05-04 08:47:00 +02:00
|
|
|
android:requestLegacyExternalStorage="true"
|
2020-09-26 18:42:22 +02:00
|
|
|
android:resizeableActivity="false"
|
2020-04-15 16:27:40 +02:00
|
|
|
tools:ignore="UnusedAttribute">
|
2018-12-03 00:39:35 +01:00
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.max_aspect"
|
2020-06-23 20:00:34 +02:00
|
|
|
android:value="3.0" />
|
2018-12-03 00:39:35 +01:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
|
|
|
android:configChanges="orientation|keyboardHidden|navigation|screenSize"
|
2020-06-23 20:00:34 +02:00
|
|
|
android:maxAspectRatio="3.0"
|
2018-12-03 00:39:35 +01:00
|
|
|
android:screenOrientation="sensorLandscape"
|
|
|
|
android:theme="@style/AppTheme">
|
2016-04-13 20:14:04 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2020-04-15 16:27:40 +02:00
|
|
|
|
2018-12-03 00:39:35 +01:00
|
|
|
<activity
|
2020-04-15 16:27:40 +02:00
|
|
|
android:name=".GameActivity"
|
2018-12-03 00:39:35 +01:00
|
|
|
android:configChanges="orientation|keyboard|keyboardHidden|navigation|screenSize|smallestScreenSize"
|
|
|
|
android:hardwareAccelerated="true"
|
|
|
|
android:launchMode="singleTask"
|
2020-06-23 20:00:34 +02:00
|
|
|
android:maxAspectRatio="3.0"
|
2018-12-03 00:39:35 +01:00
|
|
|
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"
|
2020-04-15 16:27:40 +02:00
|
|
|
android:value="Minetest" />
|
2016-04-13 20:14:04 +02:00
|
|
|
</activity>
|
2020-04-15 16:27:40 +02:00
|
|
|
|
|
|
|
<service
|
|
|
|
android:name=".UnzipService"
|
|
|
|
android:enabled="true"
|
|
|
|
android:exported="false" />
|
2016-04-13 20:14:04 +02:00
|
|
|
</application>
|
2020-04-15 16:27:40 +02:00
|
|
|
|
2016-04-13 20:14:04 +02:00
|
|
|
</manifest>
|