3
votes
1answer
46 views

How to detect that a provisioning profile is for development or distribution, programmatically

I would like to detect if a given provisioning profile is a development profile or a distribution (adhoc or app store) profile. I need to do this purely programmatically. I already understand how to ...
0
votes
1answer
151 views

iOS App Building Server

I'd like to set up an OSX server that could build iOS apps on behalf of multiple developers. (The developers would provide data used to modify a template app project in defined ways to produce the ...
2
votes
0answers
329 views

Error Dynamically change provisioning profile with xcodebuild

I want to automate the build of an iPad app with different provisioning profile (because I have different iOS developer accounts). I found that i can copy the provisioning profiles directly in the ...
5
votes
1answer
2k views

Provide xcodebuild with .mobileprovision file

I am setting up Jenkins for automating iOS builds. Are there any possibility to provide a .mobileprovision file that is not added to the provisioning tool in Xcode to xcodebuild? I know that I can ...
9
votes
1answer
4k views

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

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 ...
0
votes
1answer
98 views

What sort of provisioning profile should I use for Hudson building my iOS app?

I'm building an iPhone app and I am tasked with automating the build to integrate with our Hudson-based build of our back-end Java components. I see Apple docs mentioning 'build bots,' but I haven't ...
4
votes
1answer
2k views

Error specifying PROVISIONING_PROFILE using command line xcodebuild

I'm having trouble overriding the Code Signing Identity and provisioning profile that are specified in Xcode Build Settings with one that I specify via the command line. I'm currently doing: ...