ERROR ITMS-9000 “Invalid Image Path” when submitting with xcode 6

前端 未结 3 1360
南旧
南旧 2021-02-01 14:09

When validating or submitting my app with xcode 6, I get the error:

ERROR ITMS-9000: \"Invalid Image Path - No image found at the path referenced
under key \'CFB         


        
3条回答
  •  时光取名叫无心
    2021-02-01 14:54

    I had the same problem when switching my project to use the asset catalog, except mine was with a different image size:

    ERROR ITMS-9000: "Invalid image path - No image found at the path referenced under 'CFBundleIcons':'AppIcon60x60'"

    I fixed it by manually adding the image to

    Images.xcassets/AppIcon.appiconset/Contents.json
    

    Like so:

    {
      "size" : "60x60",
      "idiom" : "iphone",
      "filename" : "Icon-60.png",
      "scale" : "1x"
    },
    

提交回复
热议问题