How to solve “Missing Marketing Icon. iOS Apps must include a 1024x1024px”

前端 未结 9 1825
萌比男神i
萌比男神i 2021-02-01 12:19

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

相关标签:
9条回答
  • 2021-02-01 12:38

    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.

    0 讨论(0)
  • 2021-02-01 12:40

    If you are using Cordova Framework then:

    • Create an icon file with height=1024px and width=1024px. You can name the file as icon-1024.png
    • Put that icon in folder 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
      
    • This will copy the icon-1024.png file to its proper location (platforms/ios/YourProjectName/Images.xcassets/AppIcon.appiconset/)
    0 讨论(0)
  • 2021-02-01 12:47

    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

    0 讨论(0)
提交回复
热议问题