Reputation: 43
I am working on a VoIP app. I have integrated the callkit framework but having some trouble with Group calls.
The situation is the following:
What may be the reason? Is there a different procedure to follow to end a CXGroupCall?
Upvotes: 2
Views: 802
Reputation: 921
Red banner means AVAudioSession is still active. Use CallKit's provider method to deactivate your audio engine
func provider(_ provider: CXProvider, didDeactivate audioSession: AVAudioSession) {
Upvotes: 1