Yanjuan Duan
Yanjuan Duan

Reputation: 101

How to solve "code couldn't find a provisioning profile matching 'com.example.hello'."?

I am using Xcode 8.3.3, and when I build my HelloWorld project, I get this error:

cordova build ios

enter image description here

Any help?

Upvotes: 1

Views: 3825

Answers (1)

Rajesh
Rajesh

Reputation: 124

Step 1: In Xcode editor first disable automatically managing signing. Try to set you signing manually. In below image showing automatic code signing. Disable that one you will get manual code signing tabs

Step 2: In signing set your provisional profile manually. There if you have any provisional profiles in your system it will appear if not found.

Step 3: Login developer account and go to your provisional certificates section.

Step 4: Check your project provisional created or not.

Step 5: If created check certificate is valid/invalid.

Step 6: If valid download your project certificate to your device. Else edit and download certificate and attach into keychain.

Step 7: Now your will find your provisional profiles in Xcode signing settings.

I hope it helps for you.

Upvotes: 4

Related Questions