ios - Cordova overwrites iPhone splash screens -


i'm building cordova app ios using visual studio tools apache cordova 3.1 ctp in visual studio 2013 , have problem iphone (and ipad) images. overwritten when xcode project sent built on ios generated.

in below image can see on left images in visual studio project. on right side project sent ios opened in xcode. images there not ones i've provided, default ones cordova.

enter image description here

as result, app gets built default splash screens, not ones i've created.

my config.xml file contains following:

<platform name="ios">     <!-- 1st gen, 3g & 3gs : 320×480   -->     <splash src="res/screen/ios/default~iphone.png" width="320" height="480"/>     <splash src="res/screen/ios/default-portrait~iphone.png" width="320" height="480"/>     <!-- 4 & 4s            : 640×960   -->     <splash src="res/screen/ios/default@2x~iphone.png" width="640" height="960"/>     <splash src="res/screen/ios/default-portrait@2x~iphone.png" width="640" height="960"/>     <!-- 5, 5c & 5s        : 640×1136  -->     <splash src="res/screen/ios/default-568h@2x~iphone.png" width="640" height="1136"/>     <splash src="res/screen/ios/default-568h-portrait@2x~iphone.png" width="640" height="1136"/>     <!-- 6                 : 750×1334  -->     <splash src="res/screen/ios/default-667h@2x~iphone.png" width="750" height="1334"/>     <splash src="res/screen/ios/default-667h-portrait@2x~iphone.png" width="750" height="1334"/>     <!-- 6 plus            : 1242×2208, downsampled 1080 x 1920 -->     <splash src="res/screen/ios/default-736h@3x~iphone.png" width="1080" height="1920"/>     <splash src="res/screen/ios/default-736h-portrait@3x~iphone.png" width="1080" height="1920"/> </platform> 

i've see cordova ios splash screen , cordova 3.4 ios white screen after splash , i've done what's suggested there, didn't help.

any suggestions appreciated.

update: have updated cordova version 5.1.1 both on windows , mac didn't problem.

update: problem blatant error, folder name screens not screen.

here's link workaround. let know if works you.


Comments