Tried to rebuild an app that was just working yesterday. Got a message that a profile had expired, so I removed it from the iPod and from Itunes. When I chose a new profile (one with an * in the identifier), I now get an error:

Code Sign Error: Provisioning Profile (long string) can't be found.

What am I missing? I looked through related questions and didn't see this scenario already. Thanks

link|improve this question

feedback

10 Answers

up vote 314 down vote accepted

Sometimes your xcode project file gets messed up, especially if you have an old project and first created it with an older version of xcode/iphone sdk. What you need to do is open up the project file in a text editor, search for the 'long sting' from your error and manually erase that line. In fact, you should just go aead and erase any line that points to any provisioning profiles. Then reopen the project in xcode, go to the settings are reselect your new profile. This clears up issues like that most of the time The lines that point to the provisioning profiles will look like this:

PROVISIONING_PROFILE = "487F3EAC-05FB-4A2A-9EA0-31F1F35760EB";
"PROVISIONING_PROFILE[sdk=iphoneos*]" = "487F3EAC-05FB-4A2A-9EA0-31F1F35760EB";
link|improve this answer
57  
The .xcodeproj file is actually a directory, like an application bundle, If you right click it in finder, you can select show package contents, and then you will see several files inside (or in terminal just cd into it). The actual project file is the one in there with a .pbxproj extension. Once you open it with a text editor the lines you are looking for should start with 'PROVISIONING_PROFILE = or' '"PROVISIONING_PROFILE[sdk=iphoneos*]" ='. Delete all of those and then you should be good. – Brad Smith Nov 19 '09 at 23:13
1  
That worked! Thanks very much, appreciate the help. – quantumpotato Nov 21 '09 at 23:30
2  
Thanks so much! Who knew XCode was so convoluted... – pop850 Aug 26 '10 at 13:32
1  
Perfect, thanks very much. Easy Fix – XenElement Nov 16 '10 at 0:42
2  
Still a valuable advice with XCode4 in 2012. Thanks! – Alexey Rusakov Jan 7 at 12:24
show 11 more comments
feedback

Here's a simpler solution that worked for me and which doesn't require the manual editing of the project file:

In XCode, in the "Groups & Files" pane, expand "Targets" and double-click on your app's target. This brings up the Info pane for the target. In the "Build" section, check the "code signing" section for any old profiles and replace with the correct one.

Note that this is different from double-clicking on your project icon and changing the profile from there. Quite amazing :)

Ori

link|improve this answer
1  
Thanks! I'll try this next time it happens :) – quantumpotato Jun 7 '10 at 17:54
3  
and make sure to select the right build configuration first :) – Johnus Nov 16 '10 at 4:30
1  
@Ori: Great, saved me! – Josh Jan 9 '11 at 23:30
1  
@Ori great job man....it helps me a lot!! – John Jan 20 '11 at 5:54
2  
this really should be the answer marked as correct. – djibouti33 Jun 29 '11 at 17:40
show 5 more comments
feedback
  1. Project&Targets Properties -> "Don't Code Sign" -> OK -> cmd+S(or cmd+B);
  2. Project&Targets Properties -> "Your Provision Profile"-> OK

  3. Everything works again!

link|improve this answer
1  
This is the only solution that worked for me (Using XCode4). Building the app with "Don't Code Sign" selected was a mandatory step for me. – Chazbot Jul 18 '11 at 20:31
1  
This one was the only one that worked for me also. Using XCode 4 also. – David Aug 11 '11 at 7:38
This seems like a better solution than the one with 200+ upvotes, because Xcode might change the way it writes its project file in future. – Danyal Aytekin Dec 2 '11 at 16:13
None of the other solutions besides this worked for me, either. – Kris Giesing Dec 3 '11 at 18:47
This is the correct sollution which worked for me in Xcode 4.2 – selvin Jan 4 at 6:40
feedback

Just saw a variation on this issue: I went into the project.pbxproj file as per Brad Smith's notes above, except in this case all of the PROVISIONING_PROFILE lines seemed to be correct, with no occurrence of the "bad" profile string that XCode couldn't find.

However, the fix was the same: deleting ALL of the PROVISIONING_PROFILE lines in project.pbxproj, even though they looked "good" in theory, and then reopening the project in XCode.

link|improve this answer
feedback

In my case the problem was solved by opening Window -> Organizer, selecting my device and removing the old Provisioning Profile under the "Provisioning" panel on the right. The old one was already marked with a red "x" symbol but the iPhone was still using it.

Besides that profile, also the new one was showing up (with the same name) and after simply relaunching the application I had it running smoothly.

link|improve this answer
+1, sometimes I've been unable to install because an expired profile - not even with the same identifier! - was on my device. – quantumpotato May 26 '11 at 15:05
This one worked for me, but I also had to relaunch XCode to get it working. – Matt Jul 29 '11 at 10:32
feedback

One suggestion I'll make since no one yet has said it: PLEASE PLEASE PLEASE make a backup of your whole .xcodeproj file BEFORE you start modifying it's contents. Screwing up the project file and having no backup will lead to a very very unpleasant experience.

Being able to back out of an edit can be a godsend.

link|improve this answer
1  
git checkout/reset ftw – quantumpotato Aug 18 '11 at 14:30
feedback

I just encountered this problem in my XCode4. To fix it, you need to put all the correct provisions into both Debug and Release config.

I was trying to submit (by archiving) my app. So I just change the Debug provisions to "Don't Code Sign", and the Release provision to my app's appstore provision.

This fix it and enables me to archive normally. Hope that helps.

link|improve this answer
feedback

Just spent a hour or so doing this and with the help of Brad's advice and a few additional changes it all worked.

I've done this using the following: 10.7.3, Xcode 4.3.2, iOS 5.1 btw.

1) Right click on your myapp.xcodeproj and select package contents

2) open project.pbxproj with a text editor (don't recommend textedit as it may screw up the formatting)

3) Scroll all the way down until you find /* Begin XCBuildConfiguration section */

4) Notice that you have a debug and release sections

5) In the release section take a look at CODE_SIGN_IDENTITY & "CODE_SIGN_IDENTITY[sdk=iphoneos*]" it should look something like this:

CODE_SIGN_IDENTITY = "iPhone Distribution: MyCompany LLC";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution: MyCompany LLC";

6) Take a look at PROVISIONING_PROFILE and "PROVISIONING_PROFILE[sdk=iphoneos*]" they should look like this:

PROVISIONING_PROFILE = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX";
"PROVISIONING_PROFILE[sdk=iphoneos*]" = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX";

This should match your provisioning profile in Xcode. To see if they match open Xcode > Window > Organizer > Devices > Provisioning Profiles > Right click on the profile > Reveal in Finder > The filename of the .mobileprovision is your profile id.

7) Scroll down in the project.pbxproj and find a second instance of the release section. The second instance of the release section should end with a comment saying /* End XCBuildConfiguration section */

8) make sure that the second section matches the first section so that CODE_SIGN_IDENTITY, "CODE_SIGN_IDENTITY[sdk=iphoneos*], and PROVISIONING_PROFILE are all filled in.

link|improve this answer
feedback

Select the lines in codesigning that are blank under Any iOS SDK and select the right certificate.

link|improve this answer
feedback

To achieve Brad's solution entirely in Terminal, use these commands

  1. cd [Xcode project parent]
  2. vi [Xcode project name].xcodeproj/project.pbxproj
  3. /[offending provisioning profile] [Enter]
  4. dd - delete the entire line
  5. Press n until no more are found
  6. Ctrl+x to save and close
link|improve this answer
feedback

protected by Community May 19 '11 at 4:49

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.