Sinch - callDidEstablish
is not getting called on Lock screen while answering call from CallKit.
I have integrated CallKit
but answering call f
This is now possible with latest Sinch SDK. You can find it at Sinch downloads.
They have also given demo Example with SDK.
SINCallKitProvider is class responsible for callKit.Which you can copy from sample example.
Also they have added new Delegate method for it , you can use it as below:
-(void)client:(id)client willReceiveIncomingCall:(id)call{
[_callKitProvider reportNewIncomingCall:call];
}
Hope that will help you.