up vote 102 down vote favorite
110
share [g+] share [fb]

Xcode 3.2 provides an awesome new feature under the Build menu, "Build and Archive" which generates an .ipa file suitable for Ad Hoc distribution. You can also open the Organizer, go to "Archived Applications," and "Submit Application to iTunesConnect."

Is there a way to use "Build and Archive" from the command line (as part of a build script)? I'd assume that xcodebuild would be involved somehow, but the man page doesn't seem to say anything about this.

UPDATE Michael Grinich requested clarification; here's what exactly you can't do with command-line builds, features you can ONLY do with Xcode's Organizer after you "Build and Archive."

  1. You can click "Share Application..." to share your IPA with beta testers. As Guillaume points out below, due to some Xcode magic, this IPA file does not require a separately distributed .mobileprovision file that beta testers need to install; that's magical. No command-line script can do it. For example, Arrix's script (submitted May 1) does not meet that requirement.
  2. More importantly, after you've beta tested a build, you can click "Submit Application to iTunes Connect" to submit that EXACT same build to Apple, the very binary you tested, without rebuilding it. That's impossible from the command line, because signing the app is part of the build process; you can sign bits for Ad Hoc beta testing OR you can sign them for submission to the App Store, but not both. No IPA built on the command-line can be beta tested on phones and then submitted directly to Apple.

I'd love for someone to come along and prove me wrong: both of these features work great in the Xcode GUI and cannot be replicated from the command line.

link|improve this question

Aw, crud. This appears to be impossible. If you don't know the answer, please at least vote up the question so my bounty doesn't vanish into the ether... :-( – Dan Fabulich May 2 '10 at 1:23
1  
This isn't impossible, it just isn't part of xcodebuild. Creating an IPA file just involves putting the app into a directory named "Payload", zipping that directory, and renaming it to MyAppName.ipa. – Michael Grinich Jul 15 '10 at 22:59
@Michael, "Build and Archive" also enables the Organizer features, which are not available when you just make an IPA file by hand. – Dan Fabulich Jul 18 '10 at 0:14
My comment got a bit long, so it's posted as an answer. – Michael Grinich Jul 20 '10 at 19:17
feedback

9 Answers

up vote 98 down vote accepted

I finally found how to automate the build and archive process from the comand line !! I just wrote a blog article explaining how you can achieve that.

The command you have to use is "xcrun" :

/usr/bin/xcrun -sdk iphoneos PackageApplication -v "${RELEASE_BUILDDIR}/${APPLICATION_NAME}.app" -o "${BUILD_HISTORY_DIR}/${APPLICATION_NAME}.ipa" --sign "${DEVELOPER_NAME}" --embed "${PROVISONING_PROFILE}"

You will find all the details in the article ! If you have any questions dont hesitate to ask.

Hope this helps, Vincent

link|improve this answer
1  
@vdaubry - Looks like you have a couple typos in your command: DEVELOPPER_NAME and PROVISONNING_PROFILE. I will definitely try this out! – zekel Nov 16 '10 at 19:50
Thanks, io corrected the typos. – vdaubry Nov 16 '10 at 23:37
Last quote character is not a valid quote (") but a different thing (”). Breaks the script. Hard to notice. – madmw Feb 2 '11 at 16:09
Thanks, i corrected it. – vdaubry Feb 3 '11 at 11:11
4  
Not obvious to me for some time, but RELEASE_BUILDDIR needs to be an absolute path. – David Dunham Mar 23 '11 at 0:26
show 4 more comments
feedback

With Xcode 4.2 you can use the -scheme flag to do this:

xcodebuild -scheme <SchemeName> archive

After this command the Archive will show up in the Xcode Organizer.

link|improve this answer
1  
Wow, this answer needs to be up voted more. I just tried it in Xcode 4.2 and then opened the organizer and BOOM: there was my archive! – codecaffeine Dec 8 '11 at 14:09
feedback

I've been using my own build script to generate the ipa package for ad hoc distribution.

die() {
    echo "$*" >&2
    exit 1
}

appname='AppName'
config='Ad Hoc Distribution'
sdk='iphoneos3.1.3'
project_dir=$(pwd)

echo using configuration $config

echo updating version number
agvtool bump -all
fullversion="$(agvtool mvers -terse1)($(agvtool vers -terse))"
echo building version $fullversion

xcodebuild -activetarget -configuration "$config" -sdk $sdk build || die "build failed"

echo making ipa...
# packaging
cd build/"$config"-iphoneos || die "no such directory"
rm -rf Payload
rm -f "$appname".*.ipa
mkdir Payload
cp -Rp "$appname.app" Payload/
if [ -f "$project_dir"/iTunesArtwork ] ; then
    cp -f "$project_dir"/iTunesArtwork Payload/iTunesArtwork
fi

ipaname="$appname.$fullversion.$(date -u +%Y%m%d%H%M%S).ipa"
zip -r $ipaname Payload

echo finished making $ipaname

The script also increment the version number. You can remove that part if it's not needed. Hope it helps.

link|improve this answer
1  
This is a good solution, although your code is a bit hard to read without comments. Would you write a bit more about what's happening? – Michael Grinich Jul 15 '10 at 23:01
Where does xcode gets the "APPNAME.ipa" name? From Packaging-> Product Name ? – Carlos Ricardo Jan 19 at 19:34
feedback

You CAN actually resign a build, just as XCode does, so that you can test and ship the same binary. For example in my script (similar to those above) I build my release version signed as an AdHoc build, then I archive that as an IPA for testing, then resign with my distribution cert and create a zip file, which is what I send to Apple. The relevant line is:

codesign -f -vv -s "$DistributionIdentity" "$APPDIR"
link|improve this answer
feedback

I found some of the other answers here hard to get going. This article did if for me. Some paths may need to be absolute, as mentioned in the other answers.

The Command:

xcrun -sdk iphoneos PackageApplication \
    "/path/to/build/MyApp.app" \
    -o "output/path/to/MyApp.ipa" \
    --sign "iPhone Distribution: My Company" \
    --embed "/path/to/something.mobileprovision"
link|improve this answer
feedback

I tried to understand what this command was doing by diffing a normally generated ipa and an ipa generated via the "Build and Archive" Xcode menu. Didn't see any useful difference.

If it produce the same files, how come one of them doesn't require beta testers to first install an external mobile provisioning profile first?

link|improve this answer
I think iTunes may treat IPA files differently than just imported .app files. In Xcode 3.2.3, all Ad-Hoc builds include an embedded provisioning profile. – Michael Grinich Jul 15 '10 at 22:57
I compared two ipas, one generated by Xcode, one manually created. I couldn't see what was different, yet one was treated differently (didn't require to install the provisioning profile manually). – Guillaume Jul 16 '10 at 7:24
feedback

You mean the validate/share/submit options? I think those are specific to Xcode, and not suited for a command-line build tool.

With some cleverness, I bet you could make a script to do it for you. It looks like they're just stored in ~/Library/MobileDevice/Archived Applications/ with a UUDI and a plist. I can't imagine it would be that hard to reverse engineer the validator either.

The process I'm interested automating is sending builds to beta testers. (Since App Store submission happens infrequently, I don't mind doing it manually, especially since I often need to add new description text.) By doing a pseudo Build+Archive using Xcode's CLI, I can trigger automatic builds from every code commit, create IPA files with embedded provisioning profiles, and email it to testers.

link|improve this answer
I clarified my question. When you say "I can" above, do you mean you can actually do this today? – Dan Fabulich Jul 21 '10 at 5:47
2  
Yes. I'm using Hudson Continuous Integration with a custom script which runs xcodebuild and makes an IPA. – Michael Grinich Jul 21 '10 at 21:03
feedback

Improving on Vincent's answer, I wrote a script to do that: xcodearchive
It allows you to archive (generate an ipa) your project via the command line. Think of it like the sister of the xcodebuild command, but for archiving.

Code is available on github: http://github.com/gcerquant/xcodearchive


One option of the script is to enable the archiving of the dSYM symbols in a timestamped archive. No excuse to not keep the symbols anymore, and not be able to symbolicate the crash log you might later receive.

link|improve this answer
feedback

Go to the folder where's your project root and:

xcodebuild -project projectname -activetarget -activeconfiguration archive
link|improve this answer
4  
This doesn't seem to work. The 'archive' buildaction isn't available in XCode 3.2.2 (final). – Martin Cote Apr 28 '10 at 20:50
archive action not supported – lyxera Aug 10 '10 at 6:40
feedback

Your Answer

 
or
required, but never shown

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