cordova-plugin-ionic-webview icon indicating copy to clipboard operation
cordova-plugin-ionic-webview copied to clipboard

Upgrade deployment target

Open mmwlada opened this issue 1 year ago • 2 comments

Currently deployment-target in plugin.xml is 11 which is not supported anymore. In addition to that it can mess with other plugins that require deployment target larger than 11. In my case that's firebasex.

<config-file target="config.xml" parent="/*">
    <allow-navigation href="ionic://*"/>
    <preference name="deployment-target" value="11.0"/>
    <feature name="IonicWebView">
        <param name="ios-package" value="CDVWKWebViewEngine"/>
    </feature>
    <preference name="CordovaWebViewEngine" value="CDVWKWebViewEngine"/>
</config-file>

Is it possible to change this to some more recent version?

mmwlada avatar Oct 01 '24 13:10 mmwlada