Cocoapods / CrittercismSDK causes an error while applying: ITMS-90035

I am trying to load an application in Testflight using Xcode 6.3. However, when I try to test the application, it gives me the error message below:

I tried to recover certificates and training profiles without any success.

ERROR: ITMS-90035 ERROR: "Invalid signature. Code object is not signed at all. The binary path [VirtualMechanic.app/dsym_upload.sh] contains an invalid signature. Make sure that you signed the application with a distribution certificate and not a special certificate or development certificate. Make sure that the code signing settings in Xcode are correct at the target level (which override any values ​​at the project level.) Also, make sure the download package was built using the Release target in Xcode and not the simulator target. If you are sure that the settings signatures to Ode is correct, select “Clear All” in Xcode, delete the “build” directory in Finder and restore the release target. For more information, please consulthttps://developer.apple.com/library/ios/documentation/Security/Conceptual/CodeSigningGuide/Introduction/Introduction.html "

+4
source share
1 answer

That the dsym_upload.shscript is not included in the application suite, as it is a script that runs as part of the build phase, which is used to load debugging characters in Crittercism.

Locate the build phase that copies it to the application package and removes it, however, be aware that it will still need to be run during the build phase.

Here's the official Crittercism support article related to a problem that recommends updating your pod to version 5.2.0.

+6
source

All Articles