Hello everyone,
Suppose an app supports two calls at a time. the first call is connected and second call is coming in. one gets "end call & answer call", "decline", "hold call and answer call" buttons.
In case of "end call & answer call", it means to end the connected call and answer the new call.
In case of "decline", it means to reject the incomming call.
In both cases the delegate "- (void)provider:(CXProvider *)provider performEndCallAction:(CXEndCallAction *)action" is triggered. Now, How do one should know which one of those calls to end, the incoming call or the call already connected? The CXEndCallAction doesnt state a reason for either "decline" nor "end-already-connected call"
please advice on how to resolve this issue.