Smile-SA / cordova-plugin-fileopener

24 stars 28 forks source link

Apache Cordova 6.5 #16

Open VPantaleo opened 6 years ago

VPantaleo commented 6 years ago

Hi, I've upgraded my App to apache cordova 6.5 and now it does not work This is me config.xml

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

<!-- Access to all the subdomains on google.com -->
<access origin="http://*.google.com" />    
<access origin="*" launch-external="yes" />

<allow-intent href="http://*/*" />

<allow-intent href="https://*/*" />

<allow-intent href="tel:*" />

<allow-intent href="sms:*" />

<allow-intent href="mailto:*" />

<allow-intent href="geo:*" />

<!-- The above is equivalent to these three declarations -->
<allow-navigation href="http://*/*" />
<allow-navigation href="https://*/*" />
<allow-navigation href="data:*" />

<platform name="android">
    <allow-intent href="market:*" />
</platform>

<platform name="ios">
    <allow-intent href="itms:*" />
    <allow-intent href="itms-apps:*" />
</platform>