-
Notifications
You must be signed in to change notification settings - Fork 92
Description
I just use this plugin and jitsi meet in my project, when I receive call, a in-call UI will be shown. I am listen to the onAnswer event, and want to join the webrtc vc if the call accept.
Fail, a message is shown, "There's another call is progress..."
cordova.plugins.CordovaCall.on('answer', function(){
cordova.plugins.jitsiplugin.join("room_abc");
});
If I call endCall first, I can go to the vc successfully, but there is a endcall beep sound, if there is any way i can do if I want to go to webrtc video conference when user answer call, or if there is any way to disable beep sound when calling endCall, thanks
cordova.plugins.CordovaCall.on('answer', function(){
cordova.plugins.CordovaCall.endCall(function(){
cordova.plugins.jitsiplugin.join("room_abc");
});
});