Joining meeting stoped working in ios new SDK (V 5.0.24433.0616)

Description
I am using the Zoom SDK(v4.6.21666.0428) inside my application and it was working just fine. I updated SDK with the new version(v5.0.24433.0616), it stopped working. When I join the meeting I see the loading spinner only and getting the return code is 0.

Below Our Sample code for joining the meeting.

let service = MobileRTC.shared().getMeetingService()
if let _service = service{
_service.delegate = self
let dic = MobileRTCMeetingJoinParam()
dic.userName = Name
dic.meetingNumber = Number
dic.password = Password
let returnValue = _service.joinMeeting(with: dic)

        guard returnValue == MobileRTCMeetError_Success else {
            print("Zoom: Join meeting task failed, error code: \(returnValue.rawValue)")
            return
        }
        print("Zoom: return code: \(returnValue.rawValue)")
    }

Which version?
iOS 13.5.1

To Reproduce(If applicable)
Steps to reproduce the behavior:

Screenshots
Below link for a sample video of our app.

below attached Logfile screenshot

Smartphone (please complete the following information):

  • Device: [e.g. iPhone 6s Plus]
  • OS: [e.g. iOS 13.5.1]

Hi @kumkumschool,

Thanks for the post and the video. Based on the video, it seems like you could join the meeting at the first time and then the join meeting failed at the 2nd time. Could you have a try to call the MobileRTCMeetingSettings.disableSHowVideoPreviewWhenJoinMeeting(https://zoom.github.io/zoom-sdk-ios/interface_mobile_r_t_c_meeting_settings.html#a85841243faa0e974b243ab093d53be88) and pass YES before join a meeting? See if this helps.

If the issue persists, could you provide an SDK log for us to further investigate this issue? When the issue happens, terminate the app and wait for a few seconds and then fetch the log.

Thanks!