Software Archive
Read-only legacy content
17061 Discussions

Issue on IOS 9/9.1

And_P_
Beginner
223 Views

Hello

I build successfully my app both for Android both for IOS.

On Android it's all OK but when i launch my app on IOS it's blocked on splash-screen and it still there.

I try on IPAD with IOS 9 and 9.1.

However if I launch my app on Test tab with Intel App preview it stars successfully...

Someone can help me?

I build it with

Cordova Cli version 5.1.1

IOS target version 6

thanks

 

0 Kudos
1 Reply
PaulF_IntelCorp
Employee
223 Views

Try setting this line in your intelxdk.config.additions.xml file to true:

    <preference name="AutoHideSplashScreen" value="true" />

Here's a more detailed version that my also be useful:

<platform name="ios">
    <!-- below requires the splash screen plugin -->
    <!-- docs: https://github.com/apache/cordova-plugin-splashscreen -->
    <!-- <preference name="SplashScreen" value="Default" /> -->
    <preference name="AutoHideSplashScreen" value="true" />
    <preference name="FadeSplashScreen" value="false"/>
    <preference name="FadeSplashScreenDuration" value="3"/>
    <!-- <preference name="FadeSplashScreenDuration" value="3000"/> -->
    <preference name="ShowSplashScreenSpinner" value="false"/>

    <!-- below requires the status bar plugin -->
    <!-- docs: https://github.com/apache/cordova-plugin-statusbar -->
    <!-- see http://devgirl.org/2014/07/31/phonegap-developers-guid -->
    <preference name="StatusBarOverlaysWebView" value="false" />
    <preference name="StatusBarBackgroundColor" value="#000000" />
    <preference name="StatusBarStyle" value="lightcontent" />

    <!-- so iPhone and iPad rotate freely (CLI 5.1.1 and above) -->
    <!-- "default" means "portrait" for iPhone and "free" for iPad -->
    <preference name="Orientation" value="all" />
</platform>

 

0 Kudos
Reply