react-native-twilio-video-webrtc
react-native-twilio-video-webrtc copied to clipboard
Is there any way to show incoming screen for video call?
Expected behaviour
I want to show incoming video call screen even if the app has killed or locked when one end participant has make video call.
Actual behaviour
Now i only connect the video call from both ends without wake up the other end participants. Other side participant will not know if the actual participant has make call or not.
Environment
- **Node.js version14.15.1:
- **React Native version0.64.1:
- React Native platform + platform version: iOS 9.0
react-native-twilio-video-webrtc
Version: npm version or "master"
@Karthik170796
For that, you will need to take a look at the react-native-callkeep module.
It exposes the native incoming call screens that you need to connect with as a layer on top of the Twilio video.
Take a look at Status Callback webhook documentation, from there, based on some logic you will push a VoIP push notification on iOS or silent push notification on android in order to trigger the incoming call once it's received.
@Karthik170796
For that, you will need to take a look at the react-native-callkeep module.
It exposes the native incoming call screens that you need to connect with as a layer on top of the Twilio video.
Take a look at Status Callback webhook documentation, from there, based on some logic you will push a VoIP push notification on iOS or silent push notification on android in order to trigger the incoming call once it's received.
Okay. Thanks for your reply @kubanac95 . I will try and revert you if it works.
@Karthik170796 @karthik6636 Hi! Do you know if it works? I would like to do the same :)