summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Charles Lombardo2023-07-09 19:02:42 -0400
committerGravatar Charles Lombardo2023-07-09 19:02:42 -0400
commita6e467cd55e885f3114f16e4000d558a0659f628 (patch)
treee2d757cdc1cf98245a68c81e6002ac99fdf5a0a0 /src
parentMerge pull request #11063 from liamwhite/oops (diff)
downloadyuzu-a6e467cd55e885f3114f16e4000d558a0659f628.tar.gz
yuzu-a6e467cd55e885f3114f16e4000d558a0659f628.tar.xz
yuzu-a6e467cd55e885f3114f16e4000d558a0659f628.zip
android: Don't prompt to save user data on uninstall
While this can be convenient in some scenarios, this will be a big problem for users trying to sideload different APK versions. If they forget the last one they had installed, they could have problems installing a new copy.
Diffstat (limited to '')
-rw-r--r--src/android/app/src/main/AndroidManifest.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/android/app/src/main/AndroidManifest.xml b/src/android/app/src/main/AndroidManifest.xml
index 742685fb0..6184f3eb6 100644
--- a/src/android/app/src/main/AndroidManifest.xml
+++ b/src/android/app/src/main/AndroidManifest.xml
@@ -22,7 +22,7 @@ SPDX-License-Identifier: GPL-3.0-or-later
22 android:label="@string/app_name_suffixed" 22 android:label="@string/app_name_suffixed"
23 android:icon="@drawable/ic_launcher" 23 android:icon="@drawable/ic_launcher"
24 android:allowBackup="true" 24 android:allowBackup="true"
25 android:hasFragileUserData="true" 25 android:hasFragileUserData="false"
26 android:supportsRtl="true" 26 android:supportsRtl="true"
27 android:isGame="true" 27 android:isGame="true"
28 android:localeConfig="@xml/locales_config" 28 android:localeConfig="@xml/locales_config"