Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Provisioning profile issue in Xcode 7.1.1?

Earlier I was using Xcode 7 it used to show me the provisioning profile for the IPA file which I selected under build settings. But now after update to 7.1.1 whenever I make IPA file then it always show me iOS Team provisioning under provisioning profile section even I have selected the correct provisioning profile.

See screenshot:

enter image description here

Please tell me how to resolve the issue.

Edit:

In iOS Team Provisioning profile all the UDIDs are added which were previously added by me on developer account.

like image 641
TechChain Avatar asked Nov 17 '15 11:11

TechChain


1 Answers

In developer.apple.com:

Go to Certificates, Identifiers & Profiles > Provisioning Profiles

Delete any provisioning profiles that are no longer needed.

Pay careful attention to those that match your app's bundle ID, for example, com.yourdomain.yourappname.

Make sure you have at most one provisioning profile for Development and at most one provisioning profile for Distribution.

Download each provisioning profile and double-click on it in Finder so that it gets installed.


In Xcode:

Go to Your Target > Build Settings > Code Signing

Set all values to be iOS Developer.

Go to Your Target > Build Settings > Provisioning Profile

Set all values to be Automatic.


In Xcode:

To test the changes, create an archive using Product > Archive.

After the archive is built, open the Window > Organizer and Export the archive.

Choose Developer Deployment.

Choose your team.

The provisioning profile display should now be correct for your app in the Summary window, the one that you have shown in your question.

like image 76
Daniel Zhang Avatar answered Oct 16 '22 01:10

Daniel Zhang