瀏覽代碼

Android: Enable resizeable activities

Charles Lombardo 3 年之前
父節點
當前提交
35e9a99452
共有 1 個文件被更改,包括 2 次插入6 次删除
  1. 2 6
      src/android/app/src/main/AndroidManifest.xml

+ 2 - 6
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>
-