From 265efa7b93abe7faa34cdf94c75d6022e119c723 Mon Sep 17 00:00:00 2001 From: Toby Hsieh Date: Sat, 22 Feb 2020 00:45:41 -0800 Subject: [PATCH] Use android:requestLegacyExternalStorage (#1012) This is a temporary workaround to buy more time to see if a better solution can be worked on for Android 10's scoped storage limitations. --- app/src/main/AndroidManifest.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index c3b1972b..c9ec5790 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -38,7 +38,8 @@ THE SOFTWARE. android:allowBackup="true" android:resizeableActivity="true" android:icon="@mipmap/icon" - android:label="@string/app_name"> + android:label="@string/app_name" + android:requestLegacyExternalStorage="true">