gaganinvic / cordova-plugin-jitsi-meet

Cordova plugin for jitsi meet react native sdk
10 stars 58 forks source link

Plugin working in andoid but not working in IOS #5

Open afueo opened 5 years ago

afueo commented 5 years ago

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>`