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
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)
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)
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" />

