diff options
author | Charles Lombardo <clombardo169@gmail.com> | 2023-03-22 09:14:36 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2023-06-03 09:05:44 +0200 |
commit | 93d6a1fc9c630e57d74d2eda26dd0138a914e07d (patch) | |
tree | 1550cbd38bf20c881313fb722ceb59704ded4a36 | |
parent | android: Remove unused permissions (diff) | |
download | yuzu-93d6a1fc9c630e57d74d2eda26dd0138a914e07d.tar yuzu-93d6a1fc9c630e57d74d2eda26dd0138a914e07d.tar.gz yuzu-93d6a1fc9c630e57d74d2eda26dd0138a914e07d.tar.bz2 yuzu-93d6a1fc9c630e57d74d2eda26dd0138a914e07d.tar.lz yuzu-93d6a1fc9c630e57d74d2eda26dd0138a914e07d.tar.xz yuzu-93d6a1fc9c630e57d74d2eda26dd0138a914e07d.tar.zst yuzu-93d6a1fc9c630e57d74d2eda26dd0138a914e07d.zip |
-rw-r--r-- | src/android/app/src/main/AndroidManifest.xml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/android/app/src/main/AndroidManifest.xml b/src/android/app/src/main/AndroidManifest.xml index 9c5ef9954..2cb4e971d 100644 --- a/src/android/app/src/main/AndroidManifest.xml +++ b/src/android/app/src/main/AndroidManifest.xml @@ -14,7 +14,6 @@ <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> - <application android:name="org.yuzu.yuzu_emu.YuzuApplication" android:label="@string/app_name" @@ -23,8 +22,7 @@ android:supportsRtl="true" android:isGame="true" android:banner="@mipmap/ic_launcher" - android:extractNativeLibs="true" - android:requestLegacyExternalStorage="true"> + android:extractNativeLibs="true"> <activity android:name="org.yuzu.yuzu_emu.ui.main.MainActivity" |