图像路径无效 - 在“CFBundleIcons”键下引用的路径中找不到图像:“AppIcon20x20”

时间:2017-04-24 09:17:40

标签: ios swift xcode

由于我没有收到任何答复,因此重新开始。

我一直在努力解决这个问题一个多星期。每当我尝试验证构建或最近使用应用程序加载器时,我都会收到此错误:

iTunes Store operation failed. 
Invalid Image Path - No image found at the path referenced under key 'CFBundleIcons':'AppIcon20x20'

现在,问题是我的plist中没有AppIcon20x20键。

这是我的AppIcon资产和属性设置: AppIconAttributes

在我的Plist中甚至没有提到20x20资产,如源代码版本所示:

    <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>CFBundleIcons</key>
    <dict>
        <key>CFBundlePrimaryIcon</key>
        <dict>
            <key>CFBundleIconFiles</key>
            <array>
                <string>icon603x.png</string>
                <string>icon602x.png</string>
                <string>icon403x.png</string>
                <string>icon402x.png</string>
                <string>icon293x.png</string>
                <string>icon292x.png</string>
                <string>icon203x.png</string>
                <string>icon203x.png</string>
            </array>
        </dict>
    </dict>
    <key>NSAppTransportSecurity</key>
    <dict>
        <key>NSAllowsArbitraryLoads</key>
        <true/>
        <key>NSExceptionDomains</key>
        <dict>
            <key>https://millsfitnessapparel.myshopify.com/</key>
            <string></string>
        </dict>
    </dict>
    <key>CFBundleDevelopmentRegion</key>
    <string>en</string>
    <key>CFBundleExecutable</key>
    <string>$(EXECUTABLE_NAME)</string>
    <key>CFBundleIdentifier</key>
    <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
    <key>CFBundleInfoDictionaryVersion</key>
    <string>6.0</string>
    <key>CFBundleName</key>
    <string>$(PRODUCT_NAME)</string>
    <key>CFBundlePackageType</key>
    <string>APPL</string>
    <key>CFBundleShortVersionString</key>
    <string>1.0</string>
    <key>CFBundleVersion</key>
    <string>1</string>
    <key>LSRequiresIPhoneOS</key>
    <true/>
    <key>UILaunchStoryboardName</key>
    <string>LaunchScreen</string>
    <key>UIMainStoryboardFile</key>
    <string>Main</string>
    <key>UIRequiredDeviceCapabilities</key>
    <array>
        <string>armv7</string>
    </array>
    <key>UISupportedInterfaceOrientations</key>
    <array>
        <string>UIInterfaceOrientationPortrait</string>
        <string>UIInterfaceOrientationLandscapeLeft</string>
        <string>UIInterfaceOrientationLandscapeRight</string>
    </array>
</dict>
</plist>

最后,我已经搜索了这个主题,他们都说要将CFBundleIcons添加到你的plist,我做了,但它仍然抛出错误。我也在这个项目的版本中完成了这个,其中有pod,没有pod,工作区,常规的xcproj。文件,甚至1个视图控制器和一些图标[这个最新的版本]。

我还尝试在xcode版本8.1,8.2和8.3中实现此版本,所有版本都收到相同的错误。

这里的任何帮助将不胜感激。这些是针对客户的应用程序,由于此问题,我目前迟交。谢谢。

1 个答案:

答案 0 :(得分:4)

您只需使用https://makeappicon.com/创建应用图标资源即可。您必须提供1536x1536像素的图像才能获得最佳效果。它将自动为您的项目创建所有应用程序图标

另请参阅以下内容: -

  • 检查图标文件的名称与info.plist中的名称完全相同。虽然在运行调试模式时很好,但在上传/验证构建时它不起作用。

  • 请检查您应用的捆绑包标识符是否正确。