From 596300591e6943875029616a996b9f4443ab12ff Mon Sep 17 00:00:00 2001 From: Mugurell Date: Wed, 22 Jul 2020 12:55:59 +0300 Subject: [PATCH] For #12772 - Opt-out of scoped storage Targeting Android 10 means we need to support scoped storage or we need to opt-out of that using requestLegacyExternalStorage="true". This patch adds the opting-out leaving investigations for what changes we need for fully supporting scoped storage to be done in issue #12822. --- app/src/main/AndroidManifest.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index a0869d63d..d523a44c5 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -23,6 +23,7 @@ android:allowBackup="false" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" + android:requestLegacyExternalStorage="true" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/NormalTheme"