Hi Intel team, I have two small issues with the Intel XDK. Both right next to each other:
Under Launch Icons and Splash Screens, whenever I come back to an existing project (either from another project in Intel XDK, or if I close and re-open the XDK), the launch icons always reset to blank, and I have to manually assign each icon before building.
Also, I cannot find a way to remove a splash screen that I no longer want. I can change them, but I can't outright remove them.
Any idea what I can do to address either or both issues? Thanks!
[attachment=0:5j40ytw4][/attachment:5j40ytw4]
I think it is a bug in version 1494 as it fails to save correct icon information in <gamename>.xdk config file in your source directory.
Just change content of your xdk file from this:
{
"relPath": "icon_36.png",
"density": "ldpi",
"height": 36,
"width": 36
},[/code:5j40ytw4]
To this:
[code:5j40ytw4] {
"relPath": "icon_36.png",
"density": "ldpi",
"height": 36,
"width": 36,
"orientation": "portrait"
},
{
"relPath": "icon_36.png",
"density": "ldpi",
"height": 36,
"width": 36,
"orientation": "landscape"
},[/code:5j40ytw4]
And it works perfect!