summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2018-03-21 14:03:23 +0100
committerGitHub <noreply@github.com>2018-03-21 14:03:23 +0100
commitb384bf6fbccd831f597ce8342df32b57485ed656 (patch)
tree359de56c7af4f9f08a2fbd9a4b5618b19162d346
parenta8e41fefdb7bf00d1089947cc3a250a333dc4608 (diff)
parent61e8f8a86689bcac91382f993b7b0f9803222b68 (diff)
downloadredot-engine-b384bf6fbccd831f597ce8342df32b57485ed656.tar.gz
Merge pull request #17670 from xsellier/bugfix/17654-split-screen-master
Prevent android to split-screen
-rw-r--r--platform/android/AndroidManifest.xml.template3
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/android/AndroidManifest.xml.template b/platform/android/AndroidManifest.xml.template
index a42ceb3c21..3e42b7a3cd 100644
--- a/platform/android/AndroidManifest.xml.template
+++ b/platform/android/AndroidManifest.xml.template
@@ -16,7 +16,8 @@
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:launchMode="singleTask"
android:screenOrientation="landscape"
- android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize">
+ android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize"
+ android:resizeableActivity="false">
<intent-filter>
<action android:name="android.intent.action.MAIN" />