- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I noticed today that all Crosswalk Android building is not showing the icons and splash used (see image).
Is it a new version or a problem?
The list of used images during the build is a good way to confirm that all files are present.
- Tags:
- HTML5
- Intel® XDK
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
is the default intel icons showing instead?
If yes than go to project tab maximise launch icons and splash screen n than select android crosswalk n than add ur icons respectively. I hope it will help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Sorry, I didn´t explain correctly. All the icons and splahs were used correctly (I guess). But they didn´t show on the log.
Every build I verify if all images were used based on log. If there a red line, I correct the files.
Now, no line about these images are showed.
Until yesterday they are showed. I realized this missing today.
Running on device, to test, the icon and splash are showed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The build system has been modified to rely 100% on Cordova CLI to manage the icons, in order to improve the compatibility with Cordova and support ALL resolutions of icons. In past versions of the build system we had to manage those icons outside of the CLI, because older versions of Cordova CLI did not manage them properly. You saw those extra operations in the summary build page. Since those operations are no longer performed, you now only see the operations inside the detailed build log. The icons should still be present in your app and should still appear when loaded onto a real device.
One of the benefits of this change is that you can now specify the use of XX and XXX size icons for Android devices, using something like this inside your intelxdk.config.additions.xml file:
<!-- alternate way to add icons to Cordova builds, rather than using XDK GUI --> <!-- especially for adding icon resolutions that are not covered by the XDK GUI --> <!-- Android icons and splash screens --> <icon platform="android" src="pkg/android/icon-ldpi.png" density="ldpi" /> <icon platform="android" src="pkg/android/icon-mdpi.png" density="mdpi" /> <icon platform="android" src="pkg/android/icon-hdpi.png" density="hdpi" /> <icon platform="android" src="pkg/android/icon-xhdpi.png" density="xhdpi" /> <icon platform="android" src="pkg/android/icon-xxhdpi.png" density="xxhdpi" /> <icon platform="android" src="pkg/android/icon-xxxhdpi.png" density="xxxhdpi" /> <splash platform="android" src="pkg/android/splash-320x426.9.png" density="ldpi" orientation="portrait" /> <splash platform="android" src="pkg/android/splash-320x470.9.png" density="mdpi" orientation="portrait" /> <splash platform="android" src="pkg/android/splash-480x640.9.png" density="hdpi" orientation="portrait" /> <splash platform="android" src="pkg/android/splash-720x960.9.png" density="xhdpi" orientation="portrait" />
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you for the explanation. I will use this new way.

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page