From b9186937b3ea947d903d3a10711678a026f9b430 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Tue, 2 Jun 2026 08:12:58 -0400 Subject: [PATCH] chore(android): lock MainActivity to portrait MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Operator feedback: landscape just stretches the phone-portrait Compose layout awkwardly — every screen was sized for one column of cards, so rotation produces wide rows of unrelated content with big dead bands top and bottom. Until a dedicated tablet/landscape layout exists, lock the activity to portrait via screenOrientation. Revisit when a sw600dp resource set + multi-pane layouts land. --- android/app/src/main/AndroidManifest.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 67f4e408..1ec6dad8 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -22,9 +22,14 @@ android:usesCleartextTraffic="true" tools:targetApi="34"> + -- 2.52.0