Missing required icon file. The bundle does not contain an app icon for iPhone / iPod Touch of ex...

weixin_33728268發表於2018-07-13

試了n多方法後,都不行。提示圖片問題,但是這張圖片我是有的,尺寸也沒有任何問題

第一次不報圖片錯誤,是使用了一下方法:

find Products/ -name Info.plist -print0 | xargs -0n1 plutil -replace BuildMachineOSBuild -string 16A323

提交的時候確實不報錯,但是在iTunes Connect看不到二進位制檔案,後來收到郵件,任然是提示120圖片沒有

第二次不報圖片錯誤,是在podfile檔案的最末加上:

post_install do |installer|
    installer.aggregate_targets.each do |target|
        copy_pods_resources_path = "Pods/Target Support Files/#{target.name}/#{target.name}-resources.sh"
        string_to_replace = '--compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"'
        assets_compile_with_app_icon_arguments = '--compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" --app-icon "${ASSETCATALOG_COMPILER_APPICON_NAME}" --output-partial-info-plist "${BUILD_DIR}/assetcatalog_generated_info.plist"'
        text = File.read(copy_pods_resources_path)
        new_contents = text.gsub(string_to_replace, assets_compile_with_app_icon_arguments)
        File.open(copy_pods_resources_path, "w") {|file| file.puts new_contents }
    end
end

然後在此檔案目錄下執行:

pod update --verbose --no-repo-update

再提交就沒有此錯誤了,感動,終於解決了!

參考資料:https://github.com/CocoaPods/CocoaPods/issues/7003

相關文章