xcodebuild - 'Code Sign error: Provisioning profile X can't be found'

Ryan picture Ryan · May 4, 2012 · Viewed 18.3k times · Source

Yet another code sign error.

I'm running command:

xcodebuild -project $DIR/myproject.xcodeproj -sdk iphoneos5.0 -alltargets

and my project.pbxproj

"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution: Ryan"
"PROVISIONING_PROFILE[sdk=iphoneos*]" = "/Users/ryan/12345678-9012-3456-7890-123456789012.mobileprovision";

with output

=== BUILD NATIVE TARGET myproject OF PROJECT myproject WITH THE DEFAULT CONFIGURATION (Release) ===
Check dependencies
[BEROR]Code Sign error: Provisioning profile '/Users/ryan/12345678-9012-3456-7890-123456789012.mobileprovision' can't be found

I can't find any guidance on how to do this. Ive tried putting the provision in ~/Library/MobileDevice/Provisioning Profiles and setting the profile field in project.pbxproj to just the profile ID

It is a requirement that I need to be configure this at the command line w/o Jenkins/Hudson

Answer

jarnoh picture jarnoh · May 17, 2012

Provisioning file goes to ~/Library/MobileDevice/Provisioning Profiles and you you can select the provisioning profile like this:

xcodebuild PROVISIONING_PROFILE=12345678-9012-3456-7890-123456789012