"Unable to Submit for Review
A 1024 x 1024 pixel app icon for your app must be added to the asset catalog in Xcode.".
The real problem is, that my app has the 1024x1024 icon in the asset catalog.
I've checked the resolution, alpha channel, everything possible, even tried removing and creating new asset catalog. Nothing changed, meanwhile everything worked with the Xcode 11.3.1 version, which is too outdated now, and I have to use the new version which is bugged.
I also don't get any warnings in the Xcode while uploading the build, no warnings in the email as well. Only when I try to submit the app for review. I also found that this issue was happening to a lots of developers, and didn't found any solution. What should I do?
Thanks!
Remove all icon keys Info.plist file — CFBundleIcon, CFBundleIcon~ipad, CFBundleIconFile, and any others. In a modern iOS app that uses Asset Catalogs for the icons, Xcode will output the appropriate icon keys into the Info.plist file during the build. The only exception to this is if you use the alternate app icons API which must declare the icons in the Info.plist file.
Remove any build scripts which do anything to manipulate your resources or asset catalog file during the build. In particular, I've seen such scripts from dependency managers.
Remove any tooling versioning keys from the Info.plist file. I've seen some apps with explicit entries for DTPlatformVersion and DTXcode in the Info.plist file with ancient Xcode version information inside. Xcode will output these keys for you during the build, and they should never be explicitly set in the Info.plist file.
Xcode project file (no source)
Asset Catalog
Info.plist
The .xcarchive with the missing icon
Full build report from the build that produced the error