From dd97b8b439186afb1e62bd1c45beea832b6a9924 Mon Sep 17 00:00:00 2001 From: imeepos Date: Tue, 9 Sep 2025 14:54:34 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9B=B4=E6=96=B0=E7=9B=B8=E5=86=8C?= =?UTF-8?q?=E6=9D=83=E9=99=90=E9=85=8D=E7=BD=AE=E4=B8=BAscope.album?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将权限配置从scope.writePhotosAlbum更改为scope.album - 统一权限声明,与权限检查逻辑保持一致 - 提升跨平台权限兼容性 --- src/app.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.config.ts b/src/app.config.ts index 5eaca37..5b577bd 100644 --- a/src/app.config.ts +++ b/src/app.config.ts @@ -34,7 +34,7 @@ export default defineAppConfig({ navigationBarTextStyle: 'black' }, permission: { - 'scope.writePhotosAlbum': { + 'scope.album': { desc: '用于保存生成的图片和视频到相册' } },