Bharat
Bharat

Reputation: 133

Does Ionic4 support iOS10?

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

Answers (1)

Chris
Chris

Reputation: 834

You can try this steps that I done:

  1. Downgrade cordova-plugin-ionic-webview to 2.x (2.3/2.5)

  2. Change in config.xml

  3. In app.component.ts

    setTimeout(() => { this.splashScreen.hide(); }, 1000);

Hope that it will work!

Upvotes: 1

Related Questions