aboutsummaryrefslogtreecommitdiff
path: root/src/script/cpp_api
diff options
context:
space:
mode:
Diffstat (limited to 'src/script/cpp_api')
0 files changed, 0 insertions, 0 deletions
>
<?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:requestLegacyExternalStorage="true"
		android:resizeableActivity="false"
		tools:ignore="UnusedAttribute">

		<meta-data
			android:name="android.max_aspect"
			android:value="3.0" />

		<activity
			android:name=".MainActivity"