Call Number
Call a number directly from your Cordova/Ionic application. NOTE: The iOS Simulator (and maybe Android Simulators) do not provide access to the phone subsystem.
https://github.com/Rohfosho/CordovaCallNumberPlugin
Stuck on a Cordova issue?
If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Installation#
- Capacitor
- Cordova
- Enterprise
$ npm install call-number $ npm install @ionic-native/call-number $ ionic cap sync
$ ionic cordova plugin add call-number $ npm install @ionic-native/call-number
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. Learn More or if you're interested in an enterprise version of this plugin Contact Us
#
Supported Platforms- Android
- iOS
#
Usage#
ReactLearn more about using Ionic Native components in React
#
Angularimport { CallNumber } from '@ionic-native/call-number/ngx';
constructor(private callNumber: CallNumber) { }
...
this.callNumber.callNumber("18001010101", true) .then(res => console.log('Launched dialer!', res)) .catch(err => console.log('Error launching dialer', err));