Missing CFBundleIconName in Xcode9 iOS11 app release

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

    Simplest solution is to add CFBundleIconName key in plist and fill all AppIcon slices in assets catalog.

    Info.plist :

    <key>CFBundleIconName</key>
    <string>AppIcon</string>
    

    Download Working AppIcons Assets Here

    0 讨论(0)
  • 2020-12-02 11:42

    Nothing above worked for me. I needed to remove the value for Development Assets from Build Settings.

    0 讨论(0)
  • 2020-12-02 11:43

    In my situation; after you have done all these things in this page, don't forget to archive your project again :)

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