Hi everyone,
When building for iOS distribution, I noticed an extra file in the .ipa. I discovered this after receiving an error in Application Loader saying an icon file name contained invalid characters. Turns out just to be a empty file that’s called ‘icon’ with no extension. See image attached.
Found another forum post that describes the same issue: https://forums.coronalabs.com/topic/43349-error-messages-after-trying-to-upload-to-apple/
Unlike that guy, I was not able to successfully submit after removing empty icon file and zipping. The invalid icon error does resolve, but it creates another problem of the certificate signing. Could unzipping and rezipping the ipa bundle cause this error? The signing error did not occur until I removed the empty icon.
Here is the full error after removing the empty icon file:
ERROR ITMS-90035: "Invalid Signature. A sealed resource is missing or invalid. Make sure you have signed your application with a distribution certificate, not an ad hoc certificate or a development certificate. Verify that the code signing settings in Xcode are correct at the target level (which override any values at the project level). Additionally, make sure the bundle you are uploading was built using a Release target in Xcode, not a Simulator target. If you are certain your code signing settings are correct, choose “Clean All” in Xcode, delete the “build” directory in the Finder, and rebuild your release target. For more information, please consult https://developer.apple.com/library/ios/documentation/Security/Conceptual/CodeSigningGuide/Introduction/Introduction.html"
Please help!