Missing CFBundleIconName in Xcode9 iOS11 app release

后端 未结 21 853
迷失自我
迷失自我 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:37

    Now in IOS 11, we need to add a new icon in our project of size 1024x1024.

    Ensure that the Icon files are removed from resources folder in source code bundle and also Icons files key in info.plist is cleared. Also add CFBundleIconName key in plist as below

    Info.plist :

    CFBundleIconName
    AppIcon
    

    Also in the Project - Target—>Build Settings —> Asset Catalog Compiler - section, make sure the name of the asset catalog that contains the icons is shown in Asset Catalog App Icon Set Name.

提交回复
热议问题