bigmike7801
bigmike7801

Reputation: 3970

iOS App icon and Splash screen aren't updating for PhoneGap Project

I am using PhoneGap 3.4.0 to create an app.

Within my Phonegap project I have added my own custom app icons here:

MyProject/www/res/icon/ios/icon-57-2x.png
MyProject/www/res/icon/ios/icon-57.png
MyProject/www/res/icon/ios/icon-72-2x.png
MyProject/www/res/icon/ios/icon-72.png

And I have added my own custom Splashscreens here:

MyProject/www/res/screen/ios/screen-ipad-landscape-2x.png
MyProject/www/res/screen/ios/screen-ipad-landscape.png
MyProject/www/res/screen/ios/screen-ipad-portrait-2x.png
MyProject/www/res/screen/ios/screen-ipad-portrait.png
MyProject/www/res/screen/ios/screen-iphone-landscape-2x.png
MyProject/www/res/screen/ios/screen-iphone-landscape.png
MyProject/www/res/screen/ios/screen-iphone-portrait-2x.png
MyProject/www/res/screen/ios/screen-iphone-portrait.png
MyProject/www/res/screen/ios/screen-iphone-portrait-568h-2x.png

I then run this via command line in the MyProject folder:

phonegap build ios

The app seems to compile correctly and I can open the app in xCode and run it in the iPhone simulator, the problem is that the simulator still shows the Cordova default app icon and splashscreen.

I have also replaced the files in the below directress before and after running phonegap build ios but that doesn't seem to fix it either either.

MyProject/platforms/ios/My Project/Resources/icons/
MyProject/platforms/ios/My Project/Resources/splash/
MyProject/platforms/ios/www/res/icon/ios/
MyProject/platforms/ios/www/res/screen/ios/

I've read over the documantation for Icons and Splash Screens but can't seem to figure out why it's not working for me.

Am I missing a step? Should I be running a different command?

Upvotes: 1

Views: 2737

Answers (1)

bigmike7801
bigmike7801

Reputation: 3970

Looks like I was doing everything correctly, however in Xcode, I needed to go to:

Product > Clean

...to clear out any old settings and cache.

I found this answer here -> https://stackoverflow.com/a/18868704/647621

Upvotes: 3

Related Questions