Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I change the splash screen in the Intel XDK?

I am creating a HTML5 app using the Intel XDK and I want to change the splash screen from the default Project Development. How do I do this?

If this is not possible then how do I remove the splash screen?

like image 266
Pancake_Senpai Avatar asked Dec 20 '22 01:12

Pancake_Senpai


1 Answers

  • When you ready to build your app. Make change splash screen in Build=>Assets Tabs

See picture below:

http://i.stack.imgur.com/alBEQ.png

  • To remove splash screen, just comment out the line:

    var onDeviceReady=function(){
    ...
    //hide splash screen
    //**intel.xdk.device.hideSplashScreen();**  
    };
    
like image 110
Hung Dam Avatar answered Jan 08 '23 10:01

Hung Dam