1.0.2 • Published 5 years ago

cordova-plugin-invokedialer v1.0.2

Weekly downloads
8
License
ISC
Repository
github
Last release
5 years ago

Invoke Dialer

This plugin allows you to invoke the Dialer in the android mobile. This plugin useful in android application created using hosted web application and cordova framework.

Getting Started

Installing

Install the plugin

cordova plugin add cordova-plugin-invokedialer

OR

cordova plugin add https://github.com/9adsul/InvokeDialer.git

How to Use ?

cordova.plugins.InvokeDial.invokeDial(number, successCallback,errorCallback)

The cordova.plugins.InvokeDial.invokeDial function opens the device's default dial application.

  • number Its phone number with prefix tel: e.g. tel:040-6700 6700 or tel: +91 9989000000
  • successCallback after successful invoke it will return Success
  • errorCallback it will return error messages if any occures

Supported Platforms

  • Android

Example

cordova.plugins.InvokeDial.invokeDial(number, onSuccess, onError);
// number = "tel:040-6700 6700" or "tel: +91 9989000000"
function onSuccess() {
    console.log("Phone/Dial invoked successfully.")
}

function onError(message) {
    console.error(message);
}