- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Tags:
- HTML5
- Intel® XDK
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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>
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page