Reputation: 19916
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
Reputation: 2274
Under General -> Linked Frameworks and Libraries
Removing all the frameworks and relinking them was what worked for me.
Upvotes: 2
Reputation: 4005
I found people saying two different things that are supposed to solve this problem:
Upvotes: 1
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