Lukasz
Lukasz

Reputation: 19916

“The application does not have a valid signature” shows EVERY second time in XCode 5

I created new target for my app and every second time I compile it and try to run on the device, I get:

“The application does not have a valid signature”

...and app does not run.

I checked all similar posts in stackoverflow but none of the solutions helped me (cleaning project, etc...)

Upvotes: 2

Views: 4633

Answers (4)

Matt H
Matt H

Reputation: 6532

Clean, deleted derived data, rebuild worked for me.

Upvotes: 0

Charlton Provatas
Charlton Provatas

Reputation: 2274

Under General -> Linked Frameworks and Libraries

Removing all the frameworks and relinking them was what worked for me.

Upvotes: 2

Retro
Retro

Reputation: 4005

I found people saying two different things that are supposed to solve this problem:

  • Delete all broken provisioning profiles.
  • Ensure there are no spaces in the name of the folder that you are building from (your Xcode project folder) -- this was what fixed it for me!

Upvotes: 1

benjamin.ludwig
benjamin.ludwig

Reputation: 1585

Just to add another possible cause:

In my case I had integrated SpeechKit (2.1.5) as a an embedded framework in an iOS Swift project and this somehow caused the error.

When I used Cocoa Pods the error didn't occur anymore.

Upvotes: 1

Related Questions