Hello @Michael_Condon,
Am not facing this issue with the zoom client, I have also have an android application, the android app is working fine. Issue exists only with the iOS app.
Am not using any specific code for audio.
this is the code snippet I have used to join a meeting.
MobileRTC.shared().getMeetingSettings()?.enableCustomMeeting = true
MobileRTC.shared().getMeetingService()?.customizedUImeetingDelegate = self
MobileRTC.shared().getMeetingService()?.delegate = self
MobileRTC.shared().getMeetingSettings()?.setMuteAudioWhenJoinMeeting(false)
MobileRTC.shared().getMeetingSettings()?.enableMicOriginalInput(true)
if(zoomMeetingId == "") {
// If the meeting number is empty, return error.
return
} else {
// If the meeting number is not empty.
let getservice = MobileRTC.shared().getMeetingService()
if let service = getservice {
service.delegate = self
let paramDict = [kMeetingParam_Username:"\ (displayName)",kMeetingParam_MeetingNumber:zoomMeetingId, kMeetingParam_MeetingPassword:zoomMeetingPassword] as [String : Any]
let response = service.joinMeeting(with: paramDict)
print("onJoinMeeting, response: \(response)")
}
}