Call IONIC USSD number

2

I am trying to call a USSD number from my application IONIC , here is the code I am using:

<ion-item nav-clear menu-close href="tel:*000#">IOD</ion-item>

But it appears on the cell phone dialer only the number *000 ignoring # , has anyone had it already and knows how to solve it?

    
asked by anonymous 09.11.2016 / 19:52

1 answer

0

To make it functional you need to provide access in config.xml , add:

<access origin="tel:*" launch-external="yes"/>

Source: it1me.com

    
09.11.2016 / 20:43