Icon specified in info.plist not found under the top level app wrapper

前端 未结 15 1404
滥情空心
滥情空心 2020-12-15 16:44

I\'m trying to upload my binary to iTunes Connect using Applicaton Loader. When I select the file and hit send, it sends for about a second and then this error pops up,

相关标签:
15条回答
  • 2020-12-15 17:34

    I was similar problem's. I have resolve to do this

    1/ delete your application Icone in your Target

    2/ rename your icone ex: applicationNameSmall.png

    3/ add your icone in your application.

    This, works for me.

    0 讨论(0)
  • 2020-12-15 17:38

    I had a silly mistake, in my info.plist the i had Icon.png, and the real file name was icon.png (no uppercase)

    0 讨论(0)
  • 2020-12-15 17:38

    I had the same problem. I gone to Targets->Build Phases and deleted from there old (test) icons which I had pushed early. Good luck:)

    0 讨论(0)
  • 2020-12-15 17:39

    Another little issue that caught me out was an empty string. I got the cryptic failure message ...

    Icon specified in the info.plist not found under the top level app wrapper:
    

    And found this lurking in my plist

    <string></string>
    
    0 讨论(0)
  • 2020-12-15 17:40
    1. Fix the images issues it suggests.
    2. Clean your project.
    3. Build and run to make sure nothing has broken.
    4. Delete the previous archive
    5. Make a new archive (Product -> Archive)

    This worked for me. I had to rearchive my application cause the previous one was not updated.

    0 讨论(0)
  • 2020-12-15 17:41

    Another setting that can cause the issue: You have to make sure the icon files are also found under build phases/bundle resources

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