From 0b482991b0140e01124ff985d56fa37f05abe669 Mon Sep 17 00:00:00 2001 From: e-t-l <40775958+e-t-l@users.noreply.github.com> Date: Tue, 7 Mar 2023 17:33:06 +0000 Subject: [PATCH] Include hasFragileUserData flag This manifest flag lets users choose whether to keep app data when uninstalling the app. Helpful for things like rolling back to previous versions. Pretty harmless to include otherwise. Documentation: https://developer.android.com/guide/topics/manifest/application-element#fragileuserdata --- presentation/src/main/AndroidManifest.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/presentation/src/main/AndroidManifest.xml b/presentation/src/main/AndroidManifest.xml index 6f6767e6e..74e0c8e2b 100644 --- a/presentation/src/main/AndroidManifest.xml +++ b/presentation/src/main/AndroidManifest.xml @@ -45,7 +45,8 @@ android:label="@string/app_name" android:requestLegacyExternalStorage="true" android:supportsRtl="true" - android:theme="@style/AppLaunchTheme"> + android:theme="@style/AppLaunchTheme" + android:hasFragileUserData="true">