Questions related to the use of the command-line xcodebuild tool, which is part of Apple's Xcode toolset

learn more… | top users | synonyms

34
votes
4answers
16k views

Xcode 4: Run tests from the command line (xcodebuild)?

I've created a brand new iOS project in Xcode 4, and included unit tests. The default app has 2 targets, the main application and the unit test bundle. Using "Product > Test" (Command-U) builds the ...
27
votes
3answers
39k views

How to solve “Application failed codesign verification” when uploading to iTunes Connect?

I've got a problem that I couldn't solve with a deep search in different resources as most of the "similar" points out to be an error with Icon.png size, etc... I've tried to upload my application ...
10
votes
2answers
3k views

Building with LLVM and any optimization causes app to crash on startup

When I try to build my app with LLVM 2.0 in XCode 4.0.1 and any level or optimization that is not none (anything but -O0), the app crashes after i launch it on the device (simulator is ok). I can't ...
30
votes
16answers
52k views

Code sign error with Xcode 3.2

I had a fully working build environment before upgrading to iPhone OS 3.1 and Xcode 3.2. Now when I try to do a build, I get the following: Code Sign error: Provisioning profile 'FooApp test' ...
50
votes
8answers
15k views

Continuous Integration for Xcode projects?

After using Hudson for continuous integration with a prior project, I want to set up a continuous integration server for the iPhone projects I'm working on now. After doing some research it looks like ...
7
votes
1answer
15k views

Steps to upload an iPhone application to the AppStore in xcode4

as xcode 3 and xcode 4 is totally different. i'm a bit lost to submit app to app store. Do i still need to duplicate "Release" to create "iphoneDistrubition" configuration. Or can I straight away ...
12
votes
10answers
4k views

iOS App crashing before entering main() with Xcode 4.2 & iOS 5

Background After upgrading xcode4.1/ios4 to xcode4.2/ios5 I am experiencing crashes while the App is loading and before it even enters main(). I have set a break point in main() but it is never ...
7
votes
5answers
6k views

Why are xcodebuild and Xcode 4.2 so slow?

I am using Xcode 4.2 on a relatively large project (a few ten thousand lines of code) and it is horribly slow. Editing is ok, but whenever I try to compile the project (in Xcode, or with xcodebuild on ...
10
votes
3answers
16k views

Xcode : Adding a project as a build dependency

Im playing around with the soundcloud api, in its instructions it says to drag SoundCloudAPI.xcodeproj into your project add it as a build dependency I can drag the project in pretty easily, but ...
9
votes
5answers
5k views

Debugging exception thrown in Objective C and XCode

I am a long time Microsoft developer and I am new to iPhone development using XCode. So, I am reading a book and going through examples trying to teach myself how to write an iPhone application using ...
33
votes
2answers
10k views

How can I use .xcconfig files in Xcode 4?

I just switched over to Xcode 4 and I'm having trouble working with .xcconfig files for build settings. My targets that already had files assigned in Xcode 3 are all set up - a column titled ...
10
votes
6answers
15k views

llvm-gcc-4.2: error

The Project build & runs fine on a real device but a build for the iphone simulator finishes in this error 'llvm-gcc-4.2: error'. Any ideas? llvm-gcc-4.2: error trying to exec ...
46
votes
12answers
21k views

Running xcodebuild from a forked terminal

I'm trying to setup an automated build server for an iPhone application. I'd like to be able to have nightly adhoc beta builds so that testers can follow the development. I've setted up xcode ...
32
votes
4answers
8k views

Xcode 4.5 command line unit testing

Having an issue since updating to Xcode 4.5 when running my unit tests via command line. The following is the output i'm seeing when i try to run my tests Unknown Device Type. Using ...
17
votes
3answers
1k views

Xcode with iOS - Creating a library in a way that is easy to run in debug mode, distribute, iterate

This is for Xcode 4.5.x iOS armv7 armv7s and the sim and specifcially about Xcode project setup / project build setup: I have a project "A" that is an app in the app store. I have a project "B" that ...
18
votes
3answers
11k views

xcodebuild: simulator or device?

How do I specify to xcodebuild (the command line tool) whether I want to build for the simulator or device?
21
votes
2answers
31k views

XCode bundle identifier formatting from {PRODUCT_NAME}

Assume I have an iPhone application whose Product Name is "My App" (with a space between words) in XCode build settings. In my info.plist, the Bundle identifier is specified as ...
15
votes
3answers
10k views

Archive with Xcode's command line build tool (xcodebuild archive)

The command line tool to build Xcode projects, xcodebuild, has a new build action available in Xcode 4: archive. From man xcodebuild: archive Archive a scheme from the build root ...
4
votes
4answers
6k views

Best way to install a custom cocoa framework

I have a custom framework that, following the advice in Apple's Framework Programming Guide >> Installing your framework I install in /Library/Frameworks. I do this by adding a Run Script build phase ...
8
votes
2answers
833 views

Building a backwards compatible OS X app, when a new API is present?

I'm trying to upgrade an app (Clarke) to provide 10.6 compatibility. My plan is to use two different code paths depending on the version of OSX in use. On 10.5 it will use one controller, which ...
12
votes
7answers
5k views

how do I force Xcode to rebuild the Info.plist file in my project every time I build the project?

Apparently the file gets cached, so it only gets built when it gets changed. I have environment variables set to increment my version number though, and such, and update them independently of the ...
11
votes
2answers
2k views

install application in iphone device through command line

I'm using xcodebuild install -alltargets -iphoneos4.2 -activeconfiguration provisioning_profile=path_of_my_provisioningprofile code_sign_identity=identity. This command is building my app and i am ...
4
votes
2answers
922 views

xcodebuild arguments ignored when using archive

My name is Luca and I am currently working on iOS continuous integration to build apps in xcode for distribution (Ad Hoc and App Store) using shell-scripting. So far I achieved good results with IPA ...
3
votes
3answers
8k views

How to have Xcode always copy files (even if they have not been detected as modified) when building?

I am developing an application which uses .js files stored in the Resources/javascript folder of my application bundle. In my Xcode 2.5 project I have created a folder reference (not a group) to my ...
2
votes
1answer
1k views

When compiling for multiple targets in XCode, how do i ensure that certain files will not be included one target

I searched for a long time on stackoverflow using every keyword I could think of to solve this. I am programming for iphone and I have a lite and paid version of my app. I followed the instructions ...
74
votes
3answers
14k views

How can I resolve “Error: No developer directory found at /Developer”?

I just upgraded XCode to 4.3.1. I'm using a script to build (and then deploy through Testflight) my app. But I now receive this error: Error: No developer directory found at /Developer. Run ...
11
votes
3answers
15k views

Setting a provisioning profile from within xcodebuild when making iPhone apps

I'm using xcodebuild to compile my iPhone app from the command line. Is there a way to pass in some sort of option to set the provisioning profile? There seems to be not very much information about ...
21
votes
3answers
3k views

Building with xcodebuild Timed out waiting for <IDEWorkspace, 0x2004cebc0>/“runContextManager.runContexts”

I am setting up my iphone project to run with hudson, my build script works fine locally, but when executing the following command on my snow leopard server mac xcodebuild -sdk iphoneos4.3 -workspace ...
10
votes
3answers
2k views

Can an Xcode .mobileprovision file be 'installed' from the command line?

I'm trying to automate the process of building apps for our clients using bash scripts running on a Mac Mini Server (OSX 10.7). My script is based on the spectacularly useful script from github ...
8
votes
5answers
2k views

How to speedup xcode builds without any project modifications?

Last version or XCode (3.2.1) is running very slow on OS X 10.6. What kinds of tweaks can you do to your Mac in order to speedup Xcode build process. I'm not looking for general hints like how to ...
3
votes
1answer
991 views

Can't build XCode 4 Project from Textmate

I've opened a newly created XCode 4 project in TextMate (by dropping the project folder on the TextMate icon like the manual suggests) and have attempted to build it using the Command-B shortcut and ...
6
votes
1answer
2k views

Is there an API or any other method to automate the submission process?

I have a number of apps which are similar in functionality and UI. I create the user interface by picking up variables from a .plist file. For instance, I save the source of the API from where I pick ...
3
votes
2answers
3k views

xcodebuild install path?

I am developing an iphone app using xcode. I would like to automate the "build and run" process, and so want to know if there is any way to install the built app on simulator or device. There is ...
4
votes
2answers
10k views

Xcode - how to include c library and header file to cocoa project?

How do I add c library to Xcode Cocoa project? Or what is the best option, I don't want to copy them into Cocoa project directory. I have a C project called a which compiles into library a.dylib and ...
8
votes
1answer
2k views

Using info.plist for storing target-specific values for a multi-target app

I have a multi-target iPhone app which currently includes a header file with constant definitions that are conditionally included at build time depending on which target is being built. However, I ...
6
votes
3answers
5k views

Packaging a Bundle with a static library

I have a static library that includes some xibs. These will basically be the same across projects. I'd like to include the xibs as part of the library. I can include their veiwcontrollers, ...
5
votes
3answers
718 views

OTHER_CODE_SIGN_FLAGS keychain flag ignored?

I have just learned about the possibility to use OTHER_CODE_SIGN_FLAGS to specify the keychain which includes the cert needed for building and signing an app. But unfortunately I cannot get it to ...
5
votes
2answers
3k views

xcodebuild - how to define preprocessor macro?

How can I define a preprocessor macro when using xcodebuild? I need to build my app using a bunch of different configurations, and I would like to do this using a shell script which runs xcodebuild a ...
0
votes
1answer
2k views

application is closing just after first launch

I have build signed the iPhone application with Adhoc provisioning profile,after installing the application directly through Xcode it launched and then closed. I want to know this is correct behavior ...
16
votes
2answers
8k views

When I “Build for archive” in Xcode 4, where does the file go?

When I "Build for archive" in Xcode 4, where does the file go? As in, where on my computer is the archived app saved? Thanks
8
votes
1answer
2k views

Running iOS Unit Tests from Command Line with Xcode 4.5

While running Unit Tests from command line (necessary for Jenkins) used to work until Xcode 4.4.1 with this hack, it does not seem to work anymore with Xcode 4.5. Now I get the following error ...
7
votes
7answers
17k views

Xcode duplicate symbol _main

I'm getting the following error in Xcode 3.2.1 on Snow Leopard 10.6.2 whenever I try to compile any iPhone application generated by Appcelerator's Titanium . However , the build error only appears ...
5
votes
1answer
293 views

Xcode preprocessor dependent on environment variable

I have a configuration that I'd like to dynamically control a preprocessor defined value through an environment variable. Is this possible? if it is how do I set in the preprocessor define table that ...
2
votes
2answers
323 views

Can't find Header files when building from console [closed]

I have a project which uses a nested project dependency which in my case is RestKit. In Xcode When I build the project from within Xcode RestKit also gets compiled and places its headers here: ...
2
votes
1answer
389 views

CLI: Switch keychains in order to sign an xcodebuild

I am trying to switch on a certain keychain, and close another one. I need this because our enterprise & appstore identities are called the same. Right now, I do a "security unlock-keychain" ...
2
votes
1answer
1k views

Added Mac target to iOS project in Xcode, now 'Error Starting Executable File'

I've decided to make a Mac OSX port of my iOS app, so based on a number of suggestions I've received I've simply added a new Cocoa target to my iOS project, and set up a series of 'libraries' (which ...
2
votes
1answer
2k views

How to debug dylib with Xcode?

I have a Xcode project for library arith. I could build it with debug configuration, and I need to debug it. How can I do that? The ideal method would be to set up a test code to build an execution ...
2
votes
2answers
2k views

Automate the XCode build settings

I've developed a static library that I'd like to share between XCode projects. I did some reading to learn exactly how to include this library as a binary dependency so that it runs on both the device ...
1
vote
2answers
1k views

Jenkins Can't Run xcodebuild from project folder

I'm attempting to set up a CI environment for an iOS application. So far I've gotten xcodebuild to build the test build correctly from the command line but when Jenkins tries to execute it I get the ...
1
vote
1answer
1k views

Which one is better: DMG or PackageMaker

Here's my requirement: 1. I want my installable to have a custom license agreement 2. run another package as part of the installation 3. let the user have an option of running the app on start-up ...

1 2