You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by GitBox <gi...@apache.org> on 2020/01/09 19:59:30 UTC

[GitHub] [cordova-plugin-media-capture] mandatoryprogrammer edited a comment on issue #160: [iPhone 11 Pro Max][iOS 13.3] App Crashes Immediately When Calling navigator.device.capture.captureVideo

mandatoryprogrammer edited a comment on issue #160: [iPhone 11 Pro Max][iOS 13.3] App Crashes Immediately When Calling navigator.device.capture.captureVideo
URL: https://github.com/apache/cordova-plugin-media-capture/issues/160#issuecomment-572729673
 
 
   Upon viewing the output I got the answer to my own problem :) 
   
   ```
   HelloToptal[16367:1354451] [access] 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.
   ```
   
   Had to add the following to my `config.xml`:
   ```xml
       <config-file overwrite="true" parent="NSMicrophoneUsageDescription" platform="ios" target="*-Info.plist">
           <string>Microphone access needed</string>
       </config-file>
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org