How can I request iOS storage permission in react native?

Viewed 24230

I have found a package called react-native-permissions which gives most of the permissions in Android and iOS. Currently it is not supporting Storage permission in iOS. How can I request iOS storage permission in react native?

2 Answers

You need to add the following fields in your plist.

<key>NSPhotoLibraryAddUsageDescription</key>
<string>*your app name* would like to save photos from the app to your gallery</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>*your app name* would like to access your photo gallery for uploading images to the app</string>

If you want to save data you don't need any permission for that on iOS, it is allowed by default. Source It is the only reason why it is not supported by react-native-permissions.

Related