How to remove provisioning profiles from Xcode

后端 未结 16 1354
自闭症患者
自闭症患者 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:54

    . Simple Steps:

    1:Click finder

    2:Right click on Finder
    3:click on goto folder

    4: Paste in Search : ~/Library/MobileDevice/Provisioning Profiles

    5:Click on Go

    6:List of the Profiles .you can delete any one

    Thanks

    You'll want to restart XCode to refresh the list.

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

    Provisioning profiles are stored under settings > accounts. Just press the "View details..." for the developer account you want and the provisioning profiles will be listed there.

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

    Post deleting and adding your new profile, you can verify if the profile is active and been take by your project by running below command.

    grep -i "yourproject" *.mobileprovision
    
    0 讨论(0)
  • 2020-11-29 15:59

    I was able to delete my Provisioning Profile from XCode 6 by using the Member Center online. I then just did a refresh/Sync in XCode 6 and it disappeared.

    In the Apple Developer Member Center I had to do two things to make it happen:

    • Under under Identifiers -> AP IDs I had to first delete the old AP ID still using the old Provisioning Profile that I wanted to delete.
      • This step was crucial for me. If I just deleted the Provisioning Profile alone without the APP ID still using it, the Profile re-appeared in XCode after a Sync.
    • Under Provisioning Profiles I then deleted the unwanted provisioning profile.

    In XCode:

    • Under Preferences > Accounts, clicking on my apple ID and View Details... I Sync'd my online provisioning profiles.
    • The Provisioning Profile removed itself from the list.
    0 讨论(0)
  • 2020-11-29 16:00
    1. Open Terminal
    2. cd ~/Library/MobileDevice/
    3. open ./

    Now the finder window will be open with Provisioning Profiles folder. Delete all or any provisioning profiles from here and it will reflect in Xcode.

    0 讨论(0)
  • 2020-11-29 16:00

    In xcode 6, provisioning profiles are stored under Xcode > Preferences > accounts. Press "View details". On selecting your profile, you will get option to revoke it under settings(gear) icon below.

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