Missing required icon file. The bundle does not contain an app icon for iPhone / iPod Touch of exactly '120x120' pixels

前端 未结 17 3613
眼角桃花
眼角桃花 2021-02-19 17:05

My recent App Store upload gave me this error:

iTunes Store operation failed.
Missing required icon file. The bundle does not contain an app icon for iPhone / iP         


        
17条回答
  •  孤街浪徒
    2021-02-19 17:39

    For Xcode 9 on High Sierra try this:

    1. Go to Menu Product > Archive, right click on your new build > Show in Finder.

    2. Open Terminal and change to Archive: (type cd + space, drag your new build *.xcarchive

       cd /Users/[user]/Library/Developer/Xcode/Archives/[XXX].xcarchive  
      
    3. Using @stubyte's code:

       find Products/ -name Info.plist -print0 | xargs -0n1 plutil -replace BuildMachineOSBuild -string 16A323
      
    4. Go back to Xcode > Windows > Organizer > Upload to App Store...

    Fixed:

    ERROR ITMS-90022: "Missing required icon file. The bundle does not contain an app icon for iPhone / iPod Touch of exactly '120x120' pixels, in .png format for iOS versions >= 10.0."

    ERROR ITMS-90023: "Missing required icon file. The bundle does not contain an app icon for iPad of exactly '167x167' pixels, in .png format for iOS versions supporting iPad Pro."

    ERROR ITMS-90023: "Missing required icon file. The bundle does not contain an app icon for iPad of exactly '152x152' pixels, in .png format for iOS versions >= 10.0."

    Still warning

    WARNING ITMS-90704: "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."

    This temporary solution is working for me.

提交回复
热议问题