Reputation: 176
I working on a small app for iOS, I replace all the images inside platforms/ios/app/resources/splash with my own images, but it still showing the default image, any ideas why is doing this?
Upvotes: 2
Views: 1673
Reputation: 435
Here another option you can use
Upvotes: 3
Reputation: 6029
If you run cordova build
or cordova prepare
before you have placed your splashscreen images they will become cached by xcode. To resolve this follow these steps:
In xcode -
Targets
headingGeneral
tabLaunch Images
sectionUpvotes: 1