From f2e028333151e97f3d14831d6feb2eabbf1f710f Mon Sep 17 00:00:00 2001 From: net <96362337+netqo@users.noreply.github.com> Date: Fri, 12 Jun 2026 21:06:10 -0300 Subject: [PATCH] chore(android): lock the app to portrait orientation The casino UI is designed and laid out for a portrait phone, so pin MainActivity with android:screenOrientation="portrait" to stop the screens from rotating into landscape. --- app/src/main/AndroidManifest.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index f674386..29066e2 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -26,6 +26,7 @@ android:name=".MainActivity" android:exported="true" android:label="@string/app_name" + android:screenOrientation="portrait" android:theme="@style/Theme.Stackcasino.Splash">