Software Archive
Read-only legacy content
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
17060 Discussions

Cordova for iOS build warnings

XDKboy
Beginner
408 Views

Hi,

Can anyone share insight to my problem?

I always get these warnings when building Cordova for iOS eventhough I have correctly set my image assets like my icons. So I have no idea what's causing it. Thanks!

 
  • Warning: Unknown splash screen resolution for splash-320x480.png (480x320).
  • Warning: Unknown splash screen resolution for splash-640x960.png (960x640).
  • Warning: Unknown splash screen resolution for splash-1136x640.png (1136x640).
  • Warning: Unknown splash screen resolution for splash-1004x768.png (1004x768).
  • Warning: Unknown splash screen resolution for splash-2008x1536.png (2008x1536).
  • Warning: Unknown splash screen resolution for splash-748x1024.png (748x1024).
  • Warning: Unknown splash screen resolution for splash-1496x2048.png (1496x2048).
  • Warning: No splash screen supplied for 320x480. Using the default.
  • Warning: No splash screen supplied for 640x1136. Using the default.
  • Warning: No splash screen supplied for 1536x2008. Using the default.
  • Warning: No splash screen supplied for 2048x1496. Using the default.
  • Warning: No splash screen supplied for 1024x748. Using the default.
  • Warning: No splash screen supplied for 640x960. Using the default.
  • Warning: No splash screen supplied for 768x1004. Using the default.
0 Kudos
1 Reply
Elroy_A_Intel
Employee
408 Views

In your intelxdk.config.xml file, make sure to state your width first then the height second.

For example,

<splash platform="ios" src="assets/splash-320x480.png" width="480" height="320" />
<splash platform="ios" src="assets/splash-640x960.png" width="960" height="640" />
<splash platform="ios" src="assets/splash-640x1136.png" width="1136" height="640" /> 

0 Kudos
Reply