react-native-callkeep icon indicating copy to clipboard operation
react-native-callkeep copied to clipboard

How to deal with merging/grouping two calls?

Open arunkavi opened this issue 3 years ago • 0 comments

Scenario: In 3 way call, when one call is on hold and another call is active. How to merge both calls? Unable to find relevant APIs in RNCallKeep.

In Native iOS: //Inform CallKit to merge calls let groupCallAction = CXSetGroupCallAction(call: heldCallUUID, callUUIDToGroupWith: activeCallUUID) let transaction = CXTransaction(action: groupCallAction) CXCallController().request(transaction)

//Callback func provider(_ provider: CXProvider, perform action: CXSetGroupCallAction) { //Do changes to proceed further }

Thanks in advance.

arunkavi avatar Apr 19 '22 10:04 arunkavi