LuKenneth
LuKenneth

Reputation: 2237

Xcode The archive contains nothing that can be signed

After I archive my project and try to validate or submit to the app store I get the error: "The archive contains nothing that can be signed. Verify that your build process has compiled binaries and copied in bundled resources."

How do I fix this?

Upvotes: 0

Views: 4245

Answers (2)

Vadim F.
Vadim F.

Reputation: 1051

I will elaborate springrapher answer as this answer helped me:

In your Target -> Build Settings search for:

  1. VALID_ARCHS and make sure arm64 is included
  2. search for Excluded Architectures and make sure arm64 is NOT mentioned there

Upvotes: 1

spirographer
spirographer

Reputation: 630

Check in your Build Settings for the project to make sure you include arm64 in your supported architectures

Upvotes: 0

Related Questions