This is plugin for Jitsi Meet calling service!
npm install cordova-plugin-jitsi-meet-workbasecordova plugin add https://github.com/findmate/cordova-plugin-jitsi-meetExample of how to select them here: https://github.com/findmate/cordova-plugin-jitsi-meet/blob/master/xcode-ios-framework-embed-example.png
const roomId = 'your-custom-room-id';jitsiplugin.join('https://meet.jit.si', roomId, 'test user', false, function (data) {
//CONFERENCE_WILL_JOIN
//CONFERENCE_JOINED
//CONFERENCE_TERMINATED
//CONFERENCE_FINISHED
//CONFERENCE_DESTROYED
if (data === "CONFERENCE_TERMINATED") {
jitsiplugin.destroy(function (data) {
// call finished
}, function (err) {
console.log(err);
});
}
}, function (err) {
console.log(err);
});
``