From db9c3326e141f1e0ff4758506f599a23e31711ee Mon Sep 17 00:00:00 2001 From: Alex Li Date: Fri, 8 Nov 2024 22:05:43 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Docs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 +++- README-ZH.md | 6 ++++-- README.md | 6 ++++-- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 86ef0a4e..888c2a58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,9 @@ To know more about breaking changes, see the [Migration Guide][]. ## Unreleased -*None.* +### Fixes + +- Fix request permissions for images and videos on Android API 33+. ## 3.6.1 diff --git a/README-ZH.md b/README-ZH.md index 32e88c4b..9a63a7d5 100644 --- a/README-ZH.md +++ b/README-ZH.md @@ -806,10 +806,12 @@ rootProject.allprojects { 就算你的 `targetSdkVersion` 和 `compileSdkVersion` 不是 `33`, 你也需要在清单文件中添加以下权限配置: +> 注意:`READ_MEDIA_IMAGES` 和 `READ_MEDIA_VIDEO` 无论在请求图片还是请求视频时都需要。 + ```xml - - + + ``` diff --git a/README.md b/README.md index 8157a445..1dc4fcf4 100644 --- a/README.md +++ b/README.md @@ -866,10 +866,12 @@ When running on Android 13 (API level 33), the following permissions needs to be added to the manifest even if your `targetSdkVersion` and `compileSdkVersion` is not `33`: +> Note: `READ_MEDIA_IMAGES` and `READ_MEDIA_VIDEO` are both required whether requesting images or videos. + ```xml - - + + ```