Location tel not work any more in ios (Voltbuilder)

hi George

location = “tel:+55xxxxxxx” not make calls in ios in phonegap and voltbuilder even.
is that any permissions to release? or a plugin to works?

I have this note to myself (I haven’t tried it). It has to do with the use of intents, which I believe Apple has tightened up on.

    <allow-intent href="http://*/*" />
    <allow-intent href="https://*/*" />
    <allow-intent href="tel:*" />
    <allow-intent href="sms:*" />
    <allow-intent href="mailto:*" />
    <allow-intent href="geo:*" />
    <platform name="android">
        <allow-intent href="market:*" />
    </platform>
    <platform name="ios">
        <allow-intent href="itms:*" />
        <allow-intent href="itms-apps:*" />
    </platform>
1 Like

Yeah, it’s the intents or use the callnumber1 plugin by rofosho (sp?)

good try, but…
UserError: Plugin ‘cordova-plugin-call-number’ is not known (VoltBuilder)

Here is some more documentation:

https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-whitelist/

i saw this doc and my config.xml have
<allow-intent href="tel:*" />
but still not working… make simple app test with button (put this ref in confi.xml) and this code:

location = "tel:+551135140550"

no works…