I developed a phonegap application that works great on an iPhone. Now I want to send the application to the Appstore. The following is the procedure I'm following to submit my application:
- Open Xcode and archive the project
- Click on confirmation (which is successful)
- Click "Submit" in the appstore (where I get the following error
)
Not sure where I'm wrong. And I wrote the following in the config.xml file, and all the ideal size icons are in the icon folder, including the .png icon of size 57x57:
<platform name="ios">
<icon src="Resources/icons/icon-60@3x.png" width="180" height="180" />
<icon src="Resources/icons/icon-60.png" width="60" height="60" />
<icon src="Resources/icons/icon-60@2x.png" width="120" height="120" />
<icon src="Resources/icons/icon-76.png" width="76" height="76" />
<icon src="Resources/icons/icon-76@2x.png" width="152" height="152" />
<icon src="Resources/icons/icon-40.png" width="40" height="40" />
<icon src="Resources/icons/icon-40@2x.png" width="80" height="80" />
<icon src="Resources/icons/AppIcon57x57.png" width="57" height="57" />
<icon src="Resources/icons/AppIcon29x29.png" width="29" height="29" />
<icon src="Resources/icons/icon.png" width="57" height="57" />
<icon src="Resources/icons/icon@2x.png" width="114" height="114" />
<icon src="Resources/icons/icon-72.png" width="72" height="72" />
<icon src="Resources/icons/icon-72@2x.png" width="144" height="144" />
<icon src="Resources/icons/icon-small.png" width="29" height="29" />
<icon src="Resources/icons/icon-small@2x.png" width="58" height="58" />
<icon src="Resources/icons/icon-50.png" width="50" height="50" />
<icon src="Resources/icons/icon-50@2x.png" width="100" height="100" />
</platform>
source
share