After generating the IOS in testing the application crash in start the screen in ios but in android version it's working perfectly.
so what i need to add in my cordova project for IOS?
I added the following configration in plugin.xml in cordova plugin
URL: https://github.com/aportuguesecoder/cordova-plugin-jitsi-meet/blob/master/plugin.xml
`
need camera access to take pictures
</config-file>
<config-file target="NSPhotoLibraryUsageDescription" file="*-Info.plist" mode="merge">
<string>need photo library access to get pictures from there</string>
</config-file>
<config-file target="NSLocationWhenInUseUsageDescription" file="*-Info.plist" mode="merge">
<string>need location access to find things nearby</string>
</config-file>
<config-file target="NSMicrophoneUsageDescription" file="*-Info.plist" mode="merge">
<string>need microphone access to record sounds</string>
</config-file>`
After generating the IOS in testing the application crash in start the screen in ios but in android version it's working perfectly. so what i need to add in my cordova project for IOS? I added the following configration in plugin.xml in cordova plugin URL: https://github.com/aportuguesecoder/cordova-plugin-jitsi-meet/blob/master/plugin.xml `