How to remove provisioning profiles from Xcode

后端 未结 16 1353
自闭症患者
自闭症患者 2020-11-29 15:09

Does anyone know how to remove previously installed provisioning profiles from Xcode?

I have seen this link, but I am not able to find that location in my system.

相关标签:
16条回答
  • 2020-11-29 15:40

    It's simple, go to this folder:

    ~/Library/MobileDevice/Provisioning Profiles/
    

    Open finder on your mac, and click on Go -> Go to Folder ... Just paste this into the search bar and hit Open. It will show the list of provisioning profiles present in Xcode. Delete all provisioning profiles.

    0 讨论(0)
  • 2020-11-29 15:43

    -Download iPhone configuration utility tool

    -open it-> In Library section:- select provisioning profile(Left side of tool)

    -select provisioning profile(which you want to delete) using back space delete it.

    0 讨论(0)
  • 2020-11-29 15:44

    In Xcode 7:

    1. Go to Preferences > Accounts > Select your account and click View Details...
    2. In the Provisioning Profiles section, right click on the profile you want to delete and choose Move to Trash.
    3. Click Download all to get all the latest profiles for your account, or click Download next to the profile.
    4. Do a sanity check in your project's target(s) Build Settings so each target is indeed using the profile you want.
    0 讨论(0)
  • 2020-11-29 15:45

    I found out how to find provisioning profiles in Xcode 8. Archive your project (Product -> Archive) and then hit the validate button. Xcode will prepare the binary and the entitlements. When the summary windows comes up just hit the little arrow at the right of the window. A finder window will open with all your downloaded profiles.enter image description here

    0 讨论(0)
  • 2020-11-29 15:51

    For Xcode 7, brandonscript has the correct answer.

    For earlier versions:

    1. Log in to the Apple Developer member centre and delete the profile there: https://developer.apple.com/account/ios/profile/profileList.action
    2. In Xcode you go to Preferences > Accounts and click on your apple ID and View Details...
    3. Then Sync your online provisioning profiles to your local machine and the deleted ones will be removed from the list:

    synchronise provisioning profiles

    0 讨论(0)
  • 2020-11-29 15:54

    Update for Xcode 8.3

    This no longer works in Xcode 8.3. It appears to be related to Apple's move to automate provisioning profile and certificate generation:

    The simplest "solution" (or workaround) is to make sure Xcode is closed, then via Terminal:

    rm ~/Library/MobileDevice/Provisioning\ Profiles/*.mobileprovision  
    

    In Xcode 7 & 8:

    1. Open Preferences > Accounts

    2. Select your apple ID from the list

    3. On the right-hand side, select the team your provisioning profile belongs to

    4. Click View Details

    5. Under Provisioning Profiles, right-click the one you want to delete and select Move to Trash:

    0 讨论(0)
提交回复
热议问题