Bertho Joris
Bertho Joris

Reputation: 1601

iOS error reporting when upload app

I've tried to create a simple iOS application using Phonegap. I have followed the guidelines of phonegap to add 4 pieces of image: res/screen/ios/ in my app directory.

But when I upload the application, I get an error report like this.

Missing recommended icon file - The bundle does not contain an app icon for iPhone / iPod Touch of exactly '120x120' pixels, in .png format for iOS versions >= 7.0.

Missing recommended icon file - The bundle does not contain an app icon for iPad of exactly '76x76' pixels, in .png format for iOS versions >= 7.0.

Missing recommended icon file - The bundle does not contain an app icon for iPad of exactly '152x152' pixels, in .png format for iOS versions >= 7.0.

Version Mismatch - Neither CFBundleVersion ['1.0.0'] nor CFBundleShortVersionString [''] in the Info.plist match the version of the app set in iTunes Connect ['1.0'].

What should I do and add to resolve this error?

Thanks...

Upvotes: 0

Views: 457

Answers (1)

Janak Nirmal
Janak Nirmal

Reputation: 22726

You need to develope icons as mentioned here. So include icons as it is saying like '120x120', '76x76' and '152x152'

And for version mismatch, whenever you release an application there is a concept of versioning so on iTunesConnect you have set it correct to 1.0, but you have to also include in your info.plist file within your application. For more details check here

Upvotes: 3

Related Questions