I’m using Call Number plugin to make a phone call from ionic app it is working fine if the caller number is 10 digit or more.
this.callNumber.callNumber(“18001010101”, true)
.then(res => console.log(‘Launched dialer!’, res))
.catch(err => console.log(‘Error launching dialer’, err));
But my requirement is to dial a emergency number “108” which is 3 digit. the problem is the call number plugin is not working for 3 digit number.
this.callNumber.callNumber(“108”, true)
.then(res => console.log(‘Launched dialer!’, res))
.catch(err => console.log(‘Error launching dialer’, err));