Crashing in IOS platfrom

Hi ,
I am using Photon voice plugin in app . In android and windows platform its working fine once i shifted to ios platform and build . ipa file and install in device , the app is crashing on start.Where as there is no issue in unity editor , in IOS device the app getting crashed . I am sure there was no problem with device . Apart from PUN voice other PUN plugins are working fine in IOS device ,Only PUN voice is getting crashed .Please help me to fix this .

Comments

  • Fixed it, Posting solution here so that it would be useful to someone

    Open xcode and select info.plist , open it with source code and add below lines to it

    NSMicrophoneUsageDescription
    Need microphone access for uploading videos
    NSCameraUsageDescription
    Need camera access for uploading Images
    NSLocationUsageDescription
    Need location access for updating nearby friends
    NSLocationWhenInUseUsageDescription
    This app will use your location to show you cool stuff near you.
    NSPhotoLibraryUsageDescription
    NeedLibrary access for uploading Images

    and save it and build , It worked for me