summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2023-03-23 03:39:08 +0100
committerbunnei <bunneidev@gmail.com>2023-06-03 09:05:46 +0200
commit35e9a99452c583a9611f8225cad8089684d2601b (patch)
tree0177e7754ba0794ba437998e28da6b1c3bd6cf2f
parentandroid: Fix emulation fragment comments (diff)
downloadyuzu-35e9a99452c583a9611f8225cad8089684d2601b.tar
yuzu-35e9a99452c583a9611f8225cad8089684d2601b.tar.gz
yuzu-35e9a99452c583a9611f8225cad8089684d2601b.tar.bz2
yuzu-35e9a99452c583a9611f8225cad8089684d2601b.tar.lz
yuzu-35e9a99452c583a9611f8225cad8089684d2601b.tar.xz
yuzu-35e9a99452c583a9611f8225cad8089684d2601b.tar.zst
yuzu-35e9a99452c583a9611f8225cad8089684d2601b.zip
-rw-r--r--src/android/app/src/main/AndroidManifest.xml8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/android/app/src/main/AndroidManifest.xml b/src/android/app/src/main/AndroidManifest.xml
index 79fb902ad..4cdb1fda9 100644
--- a/src/android/app/src/main/AndroidManifest.xml
+++ b/src/android/app/src/main/AndroidManifest.xml
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:tools="http://schemas.android.com/tools"
- xmlns:android="http://schemas.android.com/apk/res/android">
+<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false"/>
@@ -30,8 +29,7 @@
<activity
android:name="org.yuzu.yuzu_emu.ui.main.MainActivity"
android:exported="true"
- android:theme="@style/Theme.Yuzu.Splash.Main"
- android:resizeableActivity="false">
+ android:theme="@style/Theme.Yuzu.Splash.Main">
<!-- This intentfilter marks this Activity as the one that gets launched from Home screen. -->
<intent-filter>
@@ -49,7 +47,6 @@
<activity
android:name="org.yuzu.yuzu_emu.activities.EmulationActivity"
- android:resizeableActivity="false"
android:theme="@style/Theme.Yuzu.Main"
android:launchMode="singleTop"
android:screenOrientation="userLandscape" />
@@ -87,4 +84,3 @@
</application>
</manifest>
-