From fa9e03996c39dfbdb2424a3b3348bc6125bbee8f Mon Sep 17 00:00:00 2001 From: Xavier Sellier Date: Wed, 21 Mar 2018 08:53:51 -0400 Subject: [PATCH] Prevent android to split-screen (cherry picked from commit 61e8f8a86689bcac91382f993b7b0f9803222b68) --- platform/android/AndroidManifest.xml.template | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/platform/android/AndroidManifest.xml.template b/platform/android/AndroidManifest.xml.template index a42ceb3c21c..3e42b7a3cd2 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">