Last active
May 30, 2020 20:39
-
-
Save singh100ful/37ec51687025cfb5a9827cd94e74ebdf to your computer and use it in GitHub Desktop.
React Native Formik Image picker post install
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| ... | |
| <key>NSPhotoLibraryUsageDescription</key> | |
| <string>$(PRODUCT_NAME) would like access to your photo gallery</string> | |
| <key>NSCameraUsageDescription</key> | |
| <string>$(PRODUCT_NAME) would like to use your camera</string> | |
| <key>NSPhotoLibraryAddUsageDescription</key> | |
| <string>$(PRODUCT_NAME) would like to save photos to your photo gallery</string> | |
| <key>NSMicrophoneUsageDescription</key> | |
| <string>$(PRODUCT_NAME) would like to use your microphone (for videos)</string> | |
| </dict> | |
| </plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment