修改iOS相册添加权限说明

This commit is contained in:
fengshengxiong 2024-05-31 16:38:45 +08:00
parent 4b6121e15e
commit 016ff82fce
2 changed files with 3 additions and 3 deletions

View File

@ -27,9 +27,9 @@
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSPhotoLibraryAddUsageDescription</key>
<string>To save wallpapers to gallery, we need this permission</string>
<string>We need access to your photo album so you can save wallpapers from the app to your album</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>To save wallpapers to gallery, we need this permission</string>
<string>We need access to your photo album so you can save wallpapers from the app to your album</string>
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>
<key>UILaunchStoryboardName</key>

View File

@ -138,7 +138,7 @@ class PermissionUtil {
}
String explain = '';
if (failedPermission == Permission.storage || failedPermission == Permission.photosAddOnly) {
explain = 'To save wallpapers to gallery, we need this permission';
explain = 'We need access to your photo album so you can save wallpapers from the app to your album';
}
return explain;
}