Even though I do not use the video mode of LLSimpleCamera, app submission on iOS 10 requires me to add this key.
I know this is not a killer, and speaks more about the App submission process.
Putting it down for reference, so that it is known.
Two ways to work around it:
Add the dummy NSMicrophoneUsageDescription key but the value for the same will have to be faked reason.
Comment out the code that requests for microphone permission, the (void)requestMicrophonePermission:(void (^)(BOOL granted))completionBlock bit. Do this only incase your app does not use videoMode.
Even though I do not use the video mode of LLSimpleCamera, app submission on iOS 10 requires me to add this key.
I know this is not a killer, and speaks more about the App submission process.
Putting it down for reference, so that it is known.
Two ways to work around it:
NSMicrophoneUsageDescription
key but the value for the same will have to be faked reason.(void)requestMicrophonePermission:(void (^)(BOOL granted))completionBlock
bit. Do this only incase your app does not use videoMode.