Posts

Post not yet marked as solved
3 Replies
Any recommended guideline for Objective C token parsing ?
Post not yet marked as solved
3 Replies
Hello - Thanks for the swift code snippet. My question is mainly for Objective-C as we parse token in our SDK which is written in Objective-C. Best, Piyush
Post marked as solved
35 Replies
Hello,We are in the similar boat. We provide Voice SDK for VoIP calls. We expect two VoIP push notification : A new incoming Call push notificaiton, and Call cancellation push notification.Is there a guideline on how to handle call cancellation scenario?Thanks you!Piyush
Post not yet marked as solved
2 Replies
Hello,We have also seen similar problem https://github.com/twilio/twilio-video-ios/issues/8As mentioned on the github ticket the work around is - do { try AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayAndRecord, mode: AVAudioSessionModeVoiceChat, options: .mixWithOthers) try AVAudioSession.sharedInstance().overrideOutputAudioPort(.speaker) try AVAudioSession.sharedInstance().setActive(true) } catch { DDLogInfo("Speaker error : \(error)") } strongSelf.provider.reportNewIncomingCall(with: strongSelf.uuid, update: strongSelfIs there a better solution for this issue?Best,Piyush