From 47df0be02b43e6538164e32e63cf13c221958d45 Mon Sep 17 00:00:00 2001 From: Darcy Wong Date: Wed, 20 Nov 2019 13:50:16 +0700 Subject: [PATCH 1/2] fix(android): Grant WRITE_EXTERNAL_STORAGE permission On API level 19, the DownloadManager was throwing an exception because it needed WRITE_EXTERNAL_STORAGE permission to download the cloud catalog info. Reference: https://developer.android.com/reference/android/app/DownloadManager.Request#setDestinationUri(android.net.Uri) --- android/KMEA/app/src/main/AndroidManifest.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/android/KMEA/app/src/main/AndroidManifest.xml b/android/KMEA/app/src/main/AndroidManifest.xml index cbc8d9644a..4283920456 100644 --- a/android/KMEA/app/src/main/AndroidManifest.xml +++ b/android/KMEA/app/src/main/AndroidManifest.xml @@ -3,6 +3,7 @@ + Date: Wed, 20 Nov 2019 13:58:33 +0700 Subject: [PATCH 2/2] chore(android): update history.md --- android/history.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/history.md b/android/history.md index 71af978b4d..b2cc88e1c8 100644 --- a/android/history.md +++ b/android/history.md @@ -3,7 +3,7 @@ ## 13.0 alpha * Start version 13.0 * New Features: - * Adding a download manager to execute downloads in background and cleanup the existing implementation (#2247, #2275, #2308) + * Adding a download manager to execute downloads in background and cleanup the existing implementation (#2247, #2275, #2308, #2365) * Show spinner (without blocking UI), if user wants to add a language/keyboard and catalog download is in progress (#2313) * Improve custom package installation: Show readme.htm before starting installation process (#2286) * Sanitize the app version to `#.#.#` for the API cloud query (#2319)