I\'m new to mobile hybrid app development. I have a HTML 5 hybrid app developed in Angular and Ionic where in part of the application i want to launch the native phone app (
As Commented above:
Cordova 3.6.0 introduces a second whitelist, for restricting which URLs are allowed to launch external applications. Cordova 3.6.0 Whitelist Guide So you need to add explicitly in the config.xml:
<access origin="tel:*" launch-external="yes" />
<access origin="geo:*" launch-external="yes" />
Originally posted here.
Thanks
You should add this line in config.xml to let the app lunch an external app:
<access origin="tel:*" launch-external="yes" />