Emmanuel Quentin
Emmanuel Quentin
This should be fixed by #1144
Hi @Praxey do you have more iOS logs for this issue ? Maybe the app is killed because you [didn't report the call earlier](https://github.com/react-native-webrtc/react-native-callkeep#pushkit).
Hi @nileshtupe31, You have to use the [self managed](https://github.com/react-native-webrtc/react-native-callkeep#android-self-managed-mode) mode for that.
I fixed the issue by removing the sender from the peerConnection : ```js const pc = session.sessionDescriptionHandler.peerConnection; const videoSender = pc.getSenders().find(sender => sender.track.kind === 'video'); pc.removeTrack(videoSender); ``` Now the SDP...
Hi @timorss, To be able to wake up an iOS device, you have to send a [VOIP push notification](https://medium.com/mindful-engineering/voice-over-internet-protocol-voip-801ee15c3722)
Hello, If you want a support for Android and iOS, we've forked this repository and added it in : https://github.com/wazo-pbx/react-native-callkeep
Hi ! We've also upgraded to `react-native-webrtc 1.69.2` and having this issue too. @danjenkins have you found a way the solve this ?
Hi @JustinBeBoy, to receive an event when someone hangup via callkeep, you have to [register a listener](https://github.com/react-native-webrtc/react-native-callkeep/blob/master/example/App.js#L205).
Restangular methods aren't used on the object himself, we can remove them
Thanks @glesperance tested it, works perfectly.