johnborges
johnborges

Reputation: 2533

Cordova Launch storyboard Images not carrying over

I'm trying to use the newly suggested approach for including Story board images in my Cordova app. The images however aren't carrying over to my Xcode project after running cordova prepare ios. Has anyone gotten Splashscreen images to work properly using StoryBoard Launch Images in Cordova?

<platform name="ios">
    <splash src="res/screen/ios/Default@2x~universal~anyany.png" />
    <splash src="res/screen/ios/Default@2x~universal~comany.png" />
    <splash src="res/screen/ios/Default@2x~universal~comcom.png" />
    <splash src="res/screen/ios/Default@3x~universal~anyany.png" />
    <splash src="res/screen/ios/Default@3x~universal~anycom.png" />
    <splash src="res/screen/ios/Default@3x~universal~comany.png" />
</platform>

Upvotes: 4

Views: 2186

Answers (1)

johnborges
johnborges

Reputation: 2533

Fixed for me as of [email protected]

Upvotes: 1

Related Questions