summaryrefslogtreecommitdiff
path: root/android/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2021-11-27 00:10:13 +0000
committerGitHub <noreply@github.com>2021-11-27 00:10:13 +0000
commit51cfb57b4da8e71e39380bf5bf3e19414c779e12 (patch)
tree5ba84131a1cb3d3795fe62bb58f20bf50db7d396 /android/app/src/main/AndroidManifest.xml
parent413be76c63309266d3d271f01cc74385067d7263 (diff)
downloadminetest-51cfb57b4da8e71e39380bf5bf3e19414c779e12.tar.gz
minetest-51cfb57b4da8e71e39380bf5bf3e19414c779e12.tar.bz2
minetest-51cfb57b4da8e71e39380bf5bf3e19414c779e12.zip
Update to Android target SDK 30 (#11746)
Diffstat (limited to 'android/app/src/main/AndroidManifest.xml')
-rw-r--r--android/app/src/main/AndroidManifest.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index fa93e7069..6ea677cb9 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -30,7 +30,8 @@
android:configChanges="orientation|keyboardHidden|navigation|screenSize"
android:maxAspectRatio="3.0"
android:screenOrientation="sensorLandscape"
- android:theme="@style/AppTheme">
+ android:theme="@style/AppTheme"
+ android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
@@ -44,7 +45,8 @@
android:launchMode="singleTask"
android:maxAspectRatio="3.0"
android:screenOrientation="sensorLandscape"
- android:theme="@style/AppTheme">
+ android:theme="@style/AppTheme"
+ android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>