mrd
mrd

Reputation: 4699

Validation fails with "no matching profiles found... "

Since the update to Xcode 6, I am having problems with validation of my app: see screenshot.

I have no idea, what this means, and what I can do...

Note: I do have valid profiles in Xcode and in the Dev Portal, and I can run the app from Xcode.

enter image description here

Please advice

Upvotes: 0

Views: 316

Answers (3)

Scott Daly
Scott Daly

Reputation: 41

I am seeing this issue too - everything was working fine pre xcode 6.

EDIT - In my case, under code signing, the selection was set to distribution. I clicked into this and saw I had two distribution options (one for a developer account and one for enterprise). Explicity setting the correct one here solved the issue. It seems xcode 6 introduces a change to the automatic selection behaviour. Hope that helps!

Upvotes: 0

Manthan
Manthan

Reputation: 3914

Check out for the developer accounts in your Xcode preferences.

If you are a member of multiple teams then choose the correct team from there and if one of the account's developer info has been changed then remove that account from your Xcode preferences.

Try to remove the additional developer accounts of previous clients if there. I had this.

Also pressing the cancel button and doing it again by quitting Xcode or choosing Import Developer Profile from the above screenshot can help you.

In my case it worked for me.

Hope it helps you too.

Upvotes: 0

Razvan
Razvan

Reputation: 4122

It means that either you have no valid provisioning profiles installed or you haven't selected the correct ones in your target's build settings.

Go to your target's build settings and look at Code Signing and its Provisioning Profiles fields. Select the correct provisioning profiles for your schemas and after you do that look at Code Signing Identities fields and make sure that the identities for each schema match the provisioning profiles.

enter image description here

Upvotes: 1

Related Questions