11

When I try to use Xcode5 dp6 to run app on devices. I got an error of

No Provisioning Profiles with a valid Signing identity found issue

How can I resolve this issues.

enter image description here

iDev
  • 1,042
  • 13
  • 19
user2930730
  • 359
  • 2
  • 4
  • 14

4 Answers4

14

All you need to do is:

    1. go to Certificates, Identifiers & Profiles in the Developer Center
    2. create a new provisioning profile in "Provisioning Profiles" / "Distribution"
    3. download the profile and open it
    4. restart Xcode

And you can take a look at this post, and this and this.

Community
  • 1
  • 1
Mutawe
  • 6,464
  • 3
  • 47
  • 90
9
  1. Close Xcode
  2. Use keychain to delete your developer certificate and private key.
  3. Use Developer Center to revoke/delete your developer certificate.
  4. Use Developer Center to delete all the invalid development provisioning profiles.
  5. Run Xcode > Preferences > Accounts > (Double click your team) > Refresh.
  6. Xcode will prompt to submit a request to get a new developer certificate signed. (Choose yes).
  7. (Optional) Have you team leader approve the pending certificate in the Developer Center.
  8. Press refresh again to have Xcode download the new provisioning profiles.

You should now be able to select one of the Team Provisioning profiles to run in debug mode.

Ryan Williams
  • 1,465
  • 15
  • 19
  • This worked in my case -- all I had to do was up to Step 5 (refresh) and then try again. – radicand Sep 26 '14 at 18:40
  • yes it works. but when you are a 5 developer team, you have to replace the certificate for everybody. thanks Apple. – Nico AD Dec 11 '14 at 16:05
6
  1. Goto Xcode Preference -> Account
  2. Select/Add developer account.
  3. Now click on View Details...
  4. Click on Refresh
  5. Restart Xcode
Kirit Vaghela
  • 12,572
  • 4
  • 76
  • 80
1

I had exactly the same issue and I manage to sort it by deleting provisioning certificate from Keychain app and I download it again via Xcode (Xcode -> Preferences... -> Accounts). If it doesn't help try remove certificate and provisioning profile. After than make sure you set up everything right in Build Settings (Code signing). Hope this help

Greg
  • 25,317
  • 6
  • 53
  • 62