From 3105eb8ae77ec3931afe26576ba7a96bec104bf7 Mon Sep 17 00:00:00 2001 From: OpenSauce04 Date: Sun, 10 Nov 2024 22:06:39 +0000 Subject: [PATCH] AndroidManifest.xml: Set `android:appCategory` to `game` Citra previously used the `android:isGame` property, however this has since been deprecated. The previously set `android:isGame` property has been removed from the manifest as a result. --- src/android/app/src/main/AndroidManifest.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/android/app/src/main/AndroidManifest.xml b/src/android/app/src/main/AndroidManifest.xml index c47f3741d..a7e3581ee 100644 --- a/src/android/app/src/main/AndroidManifest.xml +++ b/src/android/app/src/main/AndroidManifest.xml @@ -34,9 +34,9 @@ android:name="org.citra.citra_emu.CitraApplication" android:label="@string/app_name" android:icon="@mipmap/ic_launcher" + android:appCategory="game" android:allowBackup="false" android:supportsRtl="true" - android:isGame="true" android:banner="@mipmap/ic_launcher" android:requestLegacyExternalStorage="true">