Submit to the App Store

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 enter image description here)

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">
    <!-- iOS 8.0+ -->
    <!-- iPhone 6 Plus  -->
    <icon src="Resources/icons/icon-60@3x.png" width="180" height="180" />
    <!-- iOS 7.0+ -->
    <!-- iPhone / iPod Touch  -->
    <icon src="Resources/icons/icon-60.png" width="60" height="60" />
    <icon src="Resources/icons/icon-60@2x.png" width="120" height="120" />
    <!-- iPad -->
    <icon src="Resources/icons/icon-76.png" width="76" height="76" />
    <icon src="Resources/icons/icon-76@2x.png" width="152" height="152" />
    <!-- iOS 6.1 -->
    <!-- Spotlight Icon -->
    <icon src="Resources/icons/icon-40.png" width="40" height="40" />
    <icon src="Resources/icons/icon-40@2x.png" width="80" height="80" />
    <!-- iPhone / iPod Touch -->
    <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" />
    <!-- iPad -->
    <icon src="Resources/icons/icon-72.png" width="72" height="72" />
    <icon src="Resources/icons/icon-72@2x.png" width="144" height="144" />
    <!-- iPhone Spotlight and Settings Icon -->
    <icon src="Resources/icons/icon-small.png" width="29" height="29" />
    <icon src="Resources/icons/icon-small@2x.png" width="58" height="58" />
    <!-- iPad Spotlight and Settings Icon -->
    <icon src="Resources/icons/icon-50.png" width="50" height="50" />
    <icon src="Resources/icons/icon-50@2x.png" width="100" height="100" />
</platform>
+4
source share
2 answers

, , . , png, , .

.

+2

. : images.xcassets Xcode, AppIcon, . , , . , .

0

Source: https://habr.com/ru/post/1583806/


All Articles