From 876b82cf5d9f49ea2ae813cbaef26fcb5f973d51 Mon Sep 17 00:00:00 2001 From: taghizadlaura Date: Mon, 28 Oct 2024 12:19:04 +0100 Subject: [PATCH 1/2] feat: modify the AndroidManifest.xml to set the screen orientation to "portrait" for the MainActivity. --- app/src/main/AndroidManifest.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 3183e5f6c..b74fe0a03 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -23,7 +23,8 @@ android:name="com.android.periodpals.MainActivity" android:exported="true" android:label="@string/app_name" - android:theme="@style/Theme.PeriodPals"> + android:theme="@style/Theme.PeriodPals" + android:screenOrientation="portrait">> From a063d5a6da8acc0d84d858d9d831f2ec6cb3a924 Mon Sep 17 00:00:00 2001 From: taghizadlaura Date: Thu, 31 Oct 2024 17:02:56 +0100 Subject: [PATCH 2/2] fix: remove unecessary ">" in AndroidManifest.xml --- app/src/main/AndroidManifest.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index b74fe0a03..ac8a0582b 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -24,7 +24,7 @@ android:exported="true" android:label="@string/app_name" android:theme="@style/Theme.PeriodPals" - android:screenOrientation="portrait">> + android:screenOrientation="portrait">