Problem with Icon.png (Icon specified in the Info.plist not found under the top level app wrapper: Icon.png (-19007))

前端 未结 26 1394
一生所求
一生所求 2020-12-06 09:51

I\'m putting together a universal app and I have the icons in my project, but I keep getting a warning from the compiler in regards to Icon.png.

I followed the instr

26条回答
  •  星月不相逢
    2020-12-06 10:22

    Here was my solution to this problem. There was an empty string in the MyApp-Info.plist file. I manually deleted it (in a text editor) and my app verified and uploaded.

    CFBundleIcons
    
        CFBundlePrimaryIcon
        
            CFBundleIconFiles
            
                 <--------- Extra string shouldn't be there------
                Icon@2x.png
                Icon.png
            
        
    
    

提交回复
热议问题