I'm trying to publish a cordova-based app on iOS by doing the following steps:
- Run
cordova build ios
- Open the generated project under
<project>/platforms/ios
in XCode - In XCode, edit
<project>-Info.plist
and remove all entries related to icons (CFBundleIconFile
,CFBundleIcons
,CFBundleIcons~ipad
) - Product > Build, then Product > Archive
- Validate... (and follow wizard) => "Validation Successful"
- Upload to App Store... (and follow wizard) => Error message after upload
ERROR: "Invalid Image Path - No image found at the path referenced under key 'CFBundleIcons': 'AppIcon40x40'"
Previously, I'd had a couple of such error messages and read in other answers that they're related to an entries in <project>-Info.plist
. I could resolve most with step 3, but this one remained.
There is no entry CFBundleIcons
in this file anymore, I double-checked by opening the final app archive.
It's also remarkable that all related problem descriptions I found online (e.g. this one) include the code ITMS-90032
in the error messages, but mine does not. What could be the reason for this?
What causes this error message, or how could I further debug the issue?