Slavi
Slavi

Reputation: 43

XCode Error itms-90035 - Invalid signature for GCManager.o

When I try to send my app to the App Store, I have this error:

IMG file

When I try to validate my code I have a success message.

IMG file

I didn't find the file GCManager.o in my project. I checked twice all App Store provisioning profiles.

Upvotes: 2

Views: 1341

Answers (1)

Asheesh
Asheesh

Reputation: 581

I found two solution for this error:

  1. In XCode, go to the "Build Phases" tab of the Project settings. Click on "Copy Bundle Resources". Look for any files named "upload-dsym.sh" and remove them. Clean and Build. Without the unsigned third party upload-dsym.sh files in your bundle, it is able to be uploaded properly.

  2. In XCode, go to the "Build Phases" tab of the Project settings. Click on "Copy Bundle Resources" check that there should not any code file like .h or .m file. This solution works for me.

Upvotes: 7

Related Questions