Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 7: "No matching provisioning profiles found"

I've changed the App ID and created a new provisioning profile for it. The new bundle ID and provisioning profile seem to be correctly set in the target's settings, and I get no warning when archiving it. But when I want to export the archive, Xcode shows me a dialog saying:

No matching provisioning profiles found for "Applications/MyApp.app"

And below it says that:

None of the valid provisioning profiles allowed the specified entitlements: application-identifier, beta-reports-active, keychain-access-groups

What I'm missing to check/change?

Thanks

EDIT: In the warning dialog I'm also shown the buttons "Visit Member Center" and "Import Developer Profile". Do I need to set a developer profile if I just want to export a distribution binary?

like image 822
AppsDev Avatar asked Mar 14 '23 12:03

AppsDev


2 Answers

Go to Member Center and then "Certificates, identifier and profiles" then create a new developer profile. Download and double click on profile then clean you app. and run.

if not solve. see this video https://www.youtube.com/watch?v=wAdV16nRLp8

like image 82
Jamil Avatar answered Apr 02 '23 11:04

Jamil


What resolved the issue was manually setting Provisioning Profile for Debug and Release to the appropriate values, as opposed to choosing Automatic (i.e., set values to your development and distribution provisioning profiles). Based on this SO answer.

like image 28
Crashalot Avatar answered Apr 02 '23 11:04

Crashalot