From d66ed02942849c0f19efaa1caeae14bd0eb1545b Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 10 Apr 2026 21:57:42 +0000 Subject: Lock MainActivity to portrait orientation Layout doesn't support landscape; rotating was causing a crash. configChanges also prevents unnecessary activity recreation if the system somehow delivers an orientation event anyway. https://claude.ai/code/session_01HXPjBsogsJVRwCiekDGkJX --- android-app/app/src/main/AndroidManifest.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/android-app/app/src/main/AndroidManifest.xml b/android-app/app/src/main/AndroidManifest.xml index 2f23e87..bcab20c 100644 --- a/android-app/app/src/main/AndroidManifest.xml +++ b/android-app/app/src/main/AndroidManifest.xml @@ -25,7 +25,9 @@ android:foregroundServiceType="location" /> + android:exported="true" + android:screenOrientation="portrait" + android:configChanges="orientation|screenSize"> -- cgit v1.2.3