Reputation: 133
I'm trying to build my Ionic4 application for all the iOS devices. It works fine on iOS11 but I wanted to make it work on iOS10 as well, So I tried with all the probabilities.
cordova plugin rm cordova-plugin-ionic-webview
cordova plugin add [email protected] --save-exact
<preference name="deployment-target" value="9.0" />
<preference name="UseScheme" value="true" />
Upvotes: 0
Views: 247
Reputation: 834
You can try this steps that I done:
Downgrade cordova-plugin-ionic-webview to 2.x (2.3/2.5)
Change in config.xml
In app.component.ts
setTimeout(() => { this.splashScreen.hide(); }, 1000);
Hope that it will work!
Upvotes: 1