Merge pull request #2365 from keymanapp/android-write-external-permission

fix(android): Grant WRITE_EXTERNAL_STORAGE permission
This commit is contained in:
Darcy Wong 2019-11-20 15:37:23 +07:00 committed by GitHub
commit e5d227cd85
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -3,6 +3,7 @@
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.VIBRATE" />
<application

View file

@ -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)