cordova-plugin-native-dialer

1.0.0 • Public • Published

cordova-plugin-native-dialer

=======================

Call a number directly from your cordova application.

Install the plugin using:

npm install cordova-plugin-native-dialer

or

yarn add cordova-plugin-native-dialer

Use the plugin in your JS file:

window.plugins.CallNumber.callNumber(onSuccess, onError, number, bypassAppChooser);

number: String; phone number to call (e.g. "1234567890")

bypassAppChooser: boolean; true if you always wish to bypass the app chooser if user has multiple applications installed that can handle calls

Make sure to create onSuccess and onError call back functions.

Example:

function onSuccess(result){
  console.log("Success:"+result);
}
 
function onError(result) {
  console.log("Error:"+result);
}

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i cordova-plugin-native-dialer

      Weekly Downloads

      2

      Version

      1.0.0

      License

      Apache 2.0

      Unpacked Size

      10.4 kB

      Total Files

      8

      Last publish

      Collaborators

      • ralhawash