build settings specify a provisioning profile with the UUID

前端 未结 17 1702
逝去的感伤
逝去的感伤 2020-12-29 19:15

I cannot seem to be able to archive an app on a new computer. I created new provisioning profiles for distribution and development. I created a new Certificate Signing Req

相关标签:
17条回答
  • 2020-12-29 19:43

    Try to use iPhone Configuration Utility and XCode organizer to ensure all certificates/provisions are configured correctly (they should be marked as green ones). Please check if your device is included into certificate/provision on Apple Developer.

    Such verifying and killing/opening XCode (kill it totally, in use of Activity Monitor) worked for me

    0 讨论(0)
  • 2020-12-29 19:43

    Had the same issue… Make sure the BUNDLE IDENTIFIER in Xcodeʻs GENERAL view for your project matches what the profile reads on your Dev web portal, and then THAT profile is installed in Xcode verbatim. Select that profile in your BUILD setting, and you could be solved by now (the App installed on devices without issue), but we also noticed we could to go back to GENERAL view and the FIX button actually worked: it fixed the "not found" profile (once "fixed" the fix button disappears)

    0 讨论(0)
  • 2020-12-29 19:43

    I resolved this problem by the following steps:

    1. cd ~/Library/MobileDevice/Provisioning\ Profiles/
    2. rm *.mobileprovision
    3. reset your provision
    0 讨论(0)
  • 2020-12-29 19:47

    Make sure that your bundle id matches app id in developer portal. I had bundle id com.company.MyApp and app id com.company.myapp

    0 讨论(0)
  • 2020-12-29 19:48

    I had this issue with Xcode 7.2 and an example I downloaded from a tutorial site, and I tried to run this on my iPhone.

    For me this simple solution worked :

    1) under 'Build settings' -> 'Code signing' : you'll find the 'hard coded' UUID of the original creator -> change this to 'automatic' for both the debug and release:

    2) under 'General' -> 'Identity' -> Team : select your provisioning profile. You can also update the bundle identifier if needed.

    3) a 'clean' is always a good idea after such changes, then build

    this solved the issue for me!

    0 讨论(0)
  • 2020-12-29 19:50

    If you are now using Xcode 7.2, it appears you will receive this message if you download individual profiles either from the Developer Center or from Xcode > Preferences > Account. Select Team Name and View Details > Provisioning Profiles section. I downloaded individual profiles (I've got several dozen so its hard to find a particular one) and was running into this error. Even if you select Download All after downloading individual profiles, this error still comes up.

    You will need to find the Provisioning Profiles and delete them then select Download All. Easiest way is to right click on a profile in an Account's details that is already downloaded and select Show In Finder and delete them all. Then just select Download All and hopefully your profiles will match up to your Code Signing.

    See: Xcode 7.2 no matching provisioning profiles found

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