This app has crashed because it attempted to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSCameraUsageDescription key with a string value explaining to the user how the app uses this data.
plist缺少摄像头 mic等权限描述
<key>NSMicrophoneUsageDescription</key>
<string>microphone access</string>
<key>NSCameraUsageDescription</key>
<string>camera access</string>
网友评论