iPhone Camera无法在本机0.55.4中工作?

时间:2018-07-13 12:52:08

标签: ios react-native react-native-ios info.plist react-native-camera

我的本​​机应用程序中的本机相机。

为此,我正在使用https://github.com/coretech/react-native-camera

将此模块设置为我的项目后,我的应用程序崩溃了,它在这样的控制台中显示了错误消息

[访问]此应用程序已崩溃,因为它尝试访问无使用说明的隐私敏感数据。该应用程序的Info.plist必须包含一个NSCameraUsageDescription键,该键具有一个字符串值,向用户解释该应用程序如何使用此数据。

甚至我在info.plist中添加了用于访问iOS中相机的键。

<key>NSPhotoLibraryAddUsageDescription</key>
<string>Your message to user when the photo library is accessed for the first time</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>uses photos</string>
<key>NSCameraUsageDescription</key>
<string>uses camera</string>

我的系统配置:npm 6.1.0,react-native-cli:2.0.1,react-native:0.55.4,Mac OS 10.13.5,Xcode 9.3

1 个答案:

答案 0 :(得分:1)

最后,我使用此链接解决了我的问题 https://steinar.io/building-your-own-camera-app-for-ios-with-react-native/