Software Archive
Read-only legacy content
17061 Discussions

remove splash screen assets

Andrew_G_1
Beginner
947 Views

I'm trying to remove the splash screen assets in XDK 2807. I can remove the splash screen plugin, but the files are still listed in the config.xml. Of course, manually deleting them from there has no effect as XDK adds them back.

Any tips? I don't want a splash screen at all. I can add a 0 delay and auto close options, but would rather not include the plugin at all if I'm not going to use it.

 

 

0 Kudos
1 Solution
PaulF_IntelCorp
Employee
947 Views

Unfortunately, there is no true "removal" mechanism in the XDK UI to remove those splash screen images from your project. You have to hand edit the <project-name>.xdk file that is in the root folder of your project directory. Do this with a text editor (e.g., Sublime, Notepad++, Brackets, etc.) and only when the XDK is NOT running; do not use a word processor to edit these files! If you open that file you'll see that it is a JSON file. Locate the references to your splash screens in this file and change them so they look like this:

        "splashes_": [],
 

 

View solution in original post

0 Kudos
2 Replies
PaulF_IntelCorp
Employee
948 Views

Unfortunately, there is no true "removal" mechanism in the XDK UI to remove those splash screen images from your project. You have to hand edit the <project-name>.xdk file that is in the root folder of your project directory. Do this with a text editor (e.g., Sublime, Notepad++, Brackets, etc.) and only when the XDK is NOT running; do not use a word processor to edit these files! If you open that file you'll see that it is a JSON file. Locate the references to your splash screens in this file and change them so they look like this:

        "splashes_": [],
 

 

0 Kudos
Andrew_G_1
Beginner
947 Views

Paul F. (Intel) wrote:

Unfortunately, there is no true "removal" mechanism in the XDK UI to remove those splash screen images from your project. You have to hand edit the <project-name>.xdk file that is in the root folder of your project directory.

Thanks Paul, that did the trick.

0 Kudos
Reply