Missing CFBundleIconName in Xcode9 iOS11 app release

后端 未结 21 934
迷失自我
迷失自我 2020-12-02 10:47

I\'m struggling to release a new version of our app using Xcode 9 built with iOS 11 SDK. Archiving and uploading the binary goes well without any issue. The build appears in

21条回答
  •  广开言路
    2020-12-02 11:31

    For Xcode 9.2 for iOS 11 apps, a couple points should be clarified.

    1- This error should be from not having icon assets in an Asset Catalog.

    (Got this error by submitting an app with no asset catalogs).

    2- This error is solved by adding an asset catalog with the required icons.

    (In my case, it was an iPhone-only app, and I added some placeholder images that were 120x and 180x).

    3- This error is not related to the 1024x1024 "App Store Icon"

    (When you forget the larger store icon, a separate, specific error will be displayed, not this error).

    4- Contrary to the Apple documentation, even with (Xcode 9 + written for iOS 11), you can also use the website to submit the App Store icon.

    (The separate specific error mentioned above is triggered by the lack of an icon, not the absence of the icon in the submitted build).

    5- missing CFBundleIconName in Info.plist was not changed.

提交回复
热议问题