ios app store submit error

  • 1
  • Idea
  • Updated 6 years ago
  • Implemented
my appid is 697726
I found two issues when submit to the app store will occur

issue 1
http://www.littlebau.com/app_store01.png

the info.plist lost the property "CFBundleShortVersionString"
the "CFBundleShortVersionString" must be match the itunes connect's version (can't be null too)
if not match,it will show the error
solve way for now:manually add these code to config.xml

<gap:config-file platform="ios" parent="CFBundleShortVersionString" overwrite="true">
<string>write your version code here</string>
</gap:config-file>

suggestion:hope PGB team can fix that,let the PGB cloud server can automatically generate this property in info.plist,otherwise,it must be manually did it and change it's value every time

issue 2
http://www.littlebau.com/app_store02.png

look at this address first and search "iOS 7.0+" keyword
http://docs.build.phonegap.com/en_US/...
although I add these code,it still lose the icon.png
solve way for now:manually add these code to config.xml (although this is a ios6.1 old setting)

<icon src="material/icon/ios/57X57.png" gap:platform="ios" width="57" height="57" />

http://www.littlebau.com/app_store03.png
suggestion:maybe can choose the 58*58 as the default and generate to icon.png (57*57),because almost the same (pic's long and width size)

<icon src="icon-small@2x.png" gap:platform="ios" width="58" height="58" />
Photo of ColinBau

ColinBau

  • 730 Posts
  • 18 Reply Likes

Posted 6 years ago

  • 1
Photo of Johann Taljaard

Johann Taljaard

  • 90 Posts
  • 7 Reply Likes
Have a look at the examples here:
http://docs.build.phonegap.com/en_US/...
Compare the config file with your own and make sure you have all the icons.

The version is just a warning - not an error. Dont worry too much about that. It should not cause any problems when submitting. Although fixing it is better. Just make sure your version in your config.xml file is the same as what you submitted on itunes
Photo of ColinBau

ColinBau

  • 730 Posts
  • 18 Reply Likes
oh~?
well~
although I check many times,but...let me just check again~
if anything feedback,I will inform you,thanks~
Photo of ColinBau

ColinBau

  • 730 Posts
  • 18 Reply Likes
hi Johann
compare many times,it must be add a line that I said last time
it will generate a "icon.png"
otherwise,the "icon.png" will not generate
http://www.littlebau.com/app_store03.png

<icon src="your_57X57.png" gap:platform="ios" width="57" height="57" />
Photo of Amir

Amir

  • 8261 Posts
  • 263 Reply Likes
CFBundleShortVersionString implemented via Config File element.

This conversation is no longer open for comments or replies.