From 9e06741e94290d8ecde9afe5163a588853045767 Mon Sep 17 00:00:00 2001 From: Anton Shevchenko Date: Mon, 28 Nov 2016 17:15:42 -0800 Subject: [PATCH] Include microphone permission key in Info.plist (#488) * Include microphone permission key in Info.plist Mention microphone permission (and what to add to `Info.plist) for iOS 10 and up. * Update README.md --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7766af6..09acb40 100644 --- a/README.md +++ b/README.md @@ -14,9 +14,15 @@ A camera module for React Native. 2. With iOS 10 and higher you need to add the "Privacy - Camera Usage Description" key to the info.plist of your project. This should be found in 'your_project/ios/your_project/Info.plist'. Add the following code: ``` NSCameraUsageDescription -Your message to user when the camera is accessed for the first time +Your message to user when the camera is accesseded for the first time + + NSPhotoLibraryUsageDescription -Your message to user when the photo library is access for the first time +Your message to user when the photo library is accessed for the first time + + +NSMicrophoneUsageDescription +Your message to user when the microsphone is accessed for the first time ``` ### Mostly automatic install with react-native