summaryrefslogtreecommitdiff
path: root/src/android
diff options
context:
space:
mode:
authorGravatar Charles Lombardo2023-03-22 22:39:08 -0400
committerGravatar bunnei2023-06-03 00:05:46 -0700
commit35e9a99452c583a9611f8225cad8089684d2601b (patch)
tree0177e7754ba0794ba437998e28da6b1c3bd6cf2f /src/android
parentandroid: Fix emulation fragment comments (diff)
downloadyuzu-35e9a99452c583a9611f8225cad8089684d2601b.tar.gz
yuzu-35e9a99452c583a9611f8225cad8089684d2601b.tar.xz
yuzu-35e9a99452c583a9611f8225cad8089684d2601b.zip
Android: Enable resizeable activities
Diffstat (limited to 'src/android')
-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 @@
1<?xml version="1.0" encoding="utf-8"?> 1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:tools="http://schemas.android.com/tools" 2<manifest xmlns:android="http://schemas.android.com/apk/res/android">
3 xmlns:android="http://schemas.android.com/apk/res/android">
4 <uses-feature 3 <uses-feature
5 android:name="android.hardware.touchscreen" 4 android:name="android.hardware.touchscreen"
6 android:required="false"/> 5 android:required="false"/>
@@ -30,8 +29,7 @@
30 <activity 29 <activity
31 android:name="org.yuzu.yuzu_emu.ui.main.MainActivity" 30 android:name="org.yuzu.yuzu_emu.ui.main.MainActivity"
32 android:exported="true" 31 android:exported="true"
33 android:theme="@style/Theme.Yuzu.Splash.Main" 32 android:theme="@style/Theme.Yuzu.Splash.Main">
34 android:resizeableActivity="false">
35 33
36 <!-- This intentfilter marks this Activity as the one that gets launched from Home screen. --> 34 <!-- This intentfilter marks this Activity as the one that gets launched from Home screen. -->
37 <intent-filter> 35 <intent-filter>
@@ -49,7 +47,6 @@
49 47
50 <activity 48 <activity
51 android:name="org.yuzu.yuzu_emu.activities.EmulationActivity" 49 android:name="org.yuzu.yuzu_emu.activities.EmulationActivity"
52 android:resizeableActivity="false"
53 android:theme="@style/Theme.Yuzu.Main" 50 android:theme="@style/Theme.Yuzu.Main"
54 android:launchMode="singleTop" 51 android:launchMode="singleTop"
55 android:screenOrientation="userLandscape" /> 52 android:screenOrientation="userLandscape" />
@@ -87,4 +84,3 @@
87 </application> 84 </application>
88 85
89</manifest> 86</manifest>
90