I am uploading app in iTunes from Xcode 9.0...This error is showing on the last step. How to solve this? 1024x1024px icon is present in my icons list
Its mandatory to add app icon of size 1024*1024 in image asset for Xcode 9 or later. Other wise it will give following error after uploading build to app store. So please make sure to add app icon in image asset before uploading app.
Dear developer, We have discovered one or more issues with your recent delivery for "CarPal". Your delivery was successful, but you may wish to correct the following issues in your next delivery: Missing Marketing Icon - iOS Apps must include a 1024x1024px Marketing Icon in PNG format. Apps that do not include the Marketing Icon cannot be submitted for App Review or Beta App Review. After you’ve corrected the issues, you can use Xcode or Application Loader to upload a new binary to iTunes Connect.
If you are using Cordova
Framework then:
height=1024px
and width=1024px
. You can name the file as icon-1024.png
res/icon/ios/
Write the following code in your config.xml
file.
<platform name="ios">
<icon height="1024" src="res/icon/ios/icon-1024.png" width="1024" />
</platform>
Open terminal/command-prompt, then cd
to your project's root directory and run the following command:
cordova prepare ios --verbose
icon-1024.png
file to its proper location (platforms/ios/YourProjectName/Images.xcassets/AppIcon.appiconset/
)Tap little grey circle arrow next to App Icons Source to go to the icon drag/drop screen.
Then go to the bottom and drag your new 1024 icon in the 1024 slot
Hint: Your iTunesArtwork@2x.png icon is the same thing as this requirement and you already have it because you already use it in the App Store through iTunes Connect