diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist index b7dd38d..3124b57 100644 --- a/ios/Runner/Info.plist +++ b/ios/Runner/Info.plist @@ -27,9 +27,9 @@ LSRequiresIPhoneOS NSPhotoLibraryAddUsageDescription - To save wallpapers to gallery, we need this permission + We need access to your photo album so you can save wallpapers from the app to your album NSPhotoLibraryUsageDescription - To save wallpapers to gallery, we need this permission + We need access to your photo album so you can save wallpapers from the app to your album UIApplicationSupportsIndirectInputEvents UILaunchStoryboardName diff --git a/lib/common/utils/permission_util.dart b/lib/common/utils/permission_util.dart index 8e665e3..0c4adf3 100644 --- a/lib/common/utils/permission_util.dart +++ b/lib/common/utils/permission_util.dart @@ -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; }