Description
When I try to join the meeting, app is throwing this message
***** CFMessagePort: bootstrap_register(): failed 1100 (0x44c) ‘Permission denied’, port = 0x22727, name = ‘group.us.zoom.1697177032.rpc’** and after couple of seconds the app crashes with
Which version?
v5.4.54520.1229
To Reproduce(If applicable)
Steps to reproduce the behavior:
- Go to ‘…’
- Click on ‘…’
- Scroll down to ‘…’
- See error
Screenshots
If applicable, add screenshots to help explain your problem.
Smartphone (please complete the following information):
- Device: [iPad PRO]
- OS: [iOS 14.3]
- Version
Additional context
App is throwing this message
***** CFMessagePort: bootstrap_register(): failed 1100 (0x44c) ‘Permission denied’, port = 0x22727, name = ‘group.us.zoom.1697177032.rpc’** and after couple of seconds the app crashes with
*** Terminating app due to uncaught exception ‘NSInvalidArgumentException’, reason: ‘-[UIView accessibilityElementsCustom]: unrecognized selector sent to instance 0x12fddf370’ ***
Call to invoke join meeting
@IBAction func joinMeeting() {
print(“log>>> tapped join meeting”)
guard let navController = self.navigationController else { return }
MobileRTC.shared().setMobileRTCRootController(navController)
guard let ms = MobileRTC.shared().getMeetingService() else {
return
}
ms.delegate = self
let joinParams = MobileRTCMeetingJoinParam()
joinParams.meetingNumber = "<<meetingNum>>"
joinParams.password = "<<meetingPassword>>"
ms.joinMeeting(with: joinParams)
self.meetingService = ms
}
Delegate call back
extension VC: MobileRTCMeetingServiceDelegate {
func onMeetingError( _ error: MobileRTCMeetError, message: String?) {
print(“log>>> error: (error) message: (message)”)
}
func onJoinMeetingConfirmed() {
print(“log>>> join meeting confirmed”)
}
func onMeetingStateChange( _ state: MobileRTCMeetingState) {
print(“log>>> current meeting state: (state)”)
}
}
Log messages :
log>>> tapped join meeting
log>>> current meeting state: MobileRTCMeetingState(rawValue: 1)
log>>> join meeting confirmed
log>>> current meeting state: MobileRTCMeetingState(rawValue: 1)
log>>> current meeting state: MobileRTCMeetingState(rawValue: 1)
log>>> error: MobileRTCMeetError(rawValue: 0) message: Optional(“success”)
Looking at the delegate call backs, I do not see any issue.
App has both RN Code and Swift Code and we are calling the Zoom related code in the swift controller. I do not know whether that has any role here?.
Appreciate your help.