1.0.4 • Published 2 years ago

videocall v1.0.4

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

Cordova Video Call Plugin

Video Call from Cordova Application

Install the plugin using:

cordova plugin add videocall

Use the plugin in your JS file:

window.plugins.VideoCall.videoCall(onSuccess, onError, number);

Example:
window.plugins.VideoCall.videoCall(
  (e: true) => {
    console.log(e);
  },
  (e: string) => {
    console.log(e);
  },
  13600000000
);

Make sure to create onSuccess and onError call back functions.

Example:

const onSuccess=(result:true)=>{
  console.log("Success:"+result);
}

const onError=(result:string)=> {
  console.log("Error:"+result);
}

const number:string="13600000000"//phone number to call;
1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago