user5513630
user5513630

Reputation: 1699

how to delete provisioning profile from xcode 7.2 in build settings

I am working on may verison app. So for my first version i create a provisioning profile with some UDID . its name is "testgrap". Now i moved to next version . So i again create a provisioning profile with another different UDID.Its name is"testgrap(2)".

Now under my build setting not able to see my provisioning profile "testgrap(2)". Still my old version provisioning profile "testgrap" is there.

How can i get my new provisioning profile there.?

Upvotes: 1

Views: 2286

Answers (3)

Reshmi Majumder
Reshmi Majumder

Reputation: 961

select xcode in the top menubar go to Window -> devices ->MyMac enter image description here

check the screen click on show Provisioning Profile, You will get all installed provisioning profiles in mac.

Upvotes: 3

Pradeep K
Pradeep K

Reputation: 3661

  1. Install iPhone Configuration Utility.
  2. In the main window of this app select Provisioning Profiles.
  3. Select the old provisioning profile (testgrap) from the list and delete it.
  4. Make sure that the new profile is present and it matches your app's bundle id.
  5. Quit and relaunch Xcode.

This should solve you issue.

Upvotes: 0

Ravi
Ravi

Reputation: 2451

To delete the provisioning profile go to xcode preferences and select accounts tab and there select your apple developer account and click on view details.

enter image description here

Then you will get a list of certificates and provisioning profiles. Select and right click on the provisioning profile on which you want to delete, then select move to trash. To get the newly added profile click on download all button then you will get all profiles in your account (it includes deleted one also. If you don't want that first click on download all and then later delete the old one).

enter image description here

There is another way to get new provisioning profile. Download the provisioning profile from apple developer center and double click on it, then it will automatically added in to xcode.

Upvotes: 1

Related Questions