Fix iOS 10 permission crashes error

I am developing an app with request access to the user’s microphone. It was working fine with iOS 9, but since upgrade to iOS 10, it terminates with the error message shown in the terminal:

This app has crashed because it attempted to access privacy-sensitive data without a usage description. The app’s Info.plist must contain an NSMicrophoneUsageDescription key with a string value explaining to the user how the app uses this data. (lldb)

To solve the problem, edit the Info.plist file as source code and add the following:

<key>NSMicrophoneUsageDescription</key>    
<string>Some microphone description whatever you want</string>

For your reference, in case you need access to the user’s camera, use the following:

<key>NSCameraUsageDescription</key>    
<string>Some kind of camera request description</string>

Or request for contacts access for your reference.

<key>NSContactsUsageDescription</key>    
<string>This app request access for your contacts</string>

Happy coding!