The app’s Info.plist must contain an NSMicrophoneUsageDescription key with a string value explaining to the user how the app uses this data
For the lazy: if you want to quickly add usageDescriptions for most media access (on-device photos, camera, video recording, location): right click your info.plist file and -> open as -> Source Code then paste the following between the current values: <key>NSMicrophoneUsageDescription</key> <string>Need microphone access for uploading audio</string> <key>NSCameraUsageDescription</key> <string>Need camera access for uploading images</string> <key>NSLocationUsageDescription</key> … Read more