react-native-webrtc / react-native-callkit

#deprecated iOS 10 new CallKit framework for React Native
ISC License
122 stars 67 forks source link

bug: RNCallKit.endCall(_uuid) is not disconnecting the call #78

Open krajay015 opened 5 years ago

krajay015 commented 5 years ago

I'm integerating my app with react-native-pjsip library and I've used react-native-callkit for call-kit handling. When remote user hangup the call then my react-native-pjsip's endpoint method notify me to terminate the call so I'm calling RNCallKit.endCall(_uuid) but it's not disconnecting the call from my screen

Debug: I've thought that maybe RNCallKit.endCall and RNCallKit.startCall is getting different _uids but after printing out the results it's the same _uuid = "cec47dc0-4017-11e9-b085-e3a9fec010a6".

Please let me know If I'm doing anything wrong