SDL_helloworld: Removed screenOrientation specification

From c1e7f817bd18c73bd2b71116a0c644c06b208757 Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Mon, 30 Dec 2024 13:28:19 -0800
Subject: [PATCH] Removed screenOrientation specification

We want to use the device preferred orientation, which will rotate as expected when the user changes orientation.
---
 android-project/app/src/main/AndroidManifest.xml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/android-project/app/src/main/AndroidManifest.xml b/android-project/app/src/main/AndroidManifest.xml
index 97bca77..45e5fcb 100644
--- a/android-project/app/src/main/AndroidManifest.xml
+++ b/android-project/app/src/main/AndroidManifest.xml
@@ -44,8 +44,7 @@
             android:exported="true"
             android:label="@string/app_name"
             android:configChanges="layoutDirection|locale|orientation|uiMode|screenLayout|screenSize|smallestScreenSize|keyboard|keyboardHidden|navigation"
-            android:preferMinimalPostProcessing="true"
-            android:screenOrientation="fullSensor">
+            android:preferMinimalPostProcessing="true">
             <intent-filter>
                 <action android:name="android.intent.action.MAIN" />