Troubleshooting Xcode 6 “file already exists” XIB build errors

May 15, 2015

When implementing foreign language localization on an existing app project, we ran into a problem with our Continuous Integration build server, and I thought I’d share what we found and the workaround required to solve it.

Localizing with Xcode 6

The project includes a few dozen XIB files that all contained strings that needed to be localized. Xcode 6 introduced some new features to streamline the process of extracting all the strings from a project. You can now export all strings in to one .xliff (XML Localisation Interchange File Format) file, give that to your translator, then import the file to apply the localized strings to your code and the individual XIB files. We did not receive all of the translations at once, and during the process of integrating and editing the localized strings, we started getting build failures on our server. It uses a vendor-supplied plug-in that automates the xcodebuild tool and numerous shell scripts to provide an .ipa file which can be uploaded to HockeyApp, our service for distributing tests builds amongst employees and to clients.

CompileXIB error in xcodebuild {.p1}

Inspecting the build logs we found the error was occurring on 2 to 4 XIB files that had been localized. This was the error message.

Base.lproj/BottomButtonBar.xib: error: The file 'es.lproj' couldn't be saved in the folder 'MyProject' because a file with the same name already exists.

Failure Reason: A file with the name 'es.lproj' already exists.

Recovery Suggestion: To save the file, either provide a different name, or move aside or delete the existing file, and try again.

Underlying Errors:

 Description: The operation couldn't be completed. File exists

 Failure Reason: File exists

Our build server is configured to clean the project every time it performs a build so this error didn’t make any sense. Here’s the things that we tried:

  • Create a new Git branch, thereby ensuring a fully clean build is performed. Got the same error but sometimes DIFFERENT XIB files.
  • Revert to a previous commit (we’d had some obnoxious xcodeproj/project.pbxproj merge conflicts) and redo the merge. No change.
  • Manually check the ObjectIDs for the UI widgets being translated. They all matched up.

The really frustrating thing was that building on a local workstation with the command line xcodebuild tool WORKED! We were getting stumped. Google searches were not providing any help, either.

Apple Developer Forum to the rescue {.p1}

I hit the Apple forum at first searching through unhelpful Xcode and xcodebuild messages. Then I finally came across this post (note: account required for access) by Mr. Olivier Destrebecq:

Note that after a few hours of trial and error, i figured out that if i set xcodebuild to only build one file at a time, then this error pretty much disappear
so pass -IDEBuildOperationMaxNumberOfConcurrentCompileTasks=1 as an option xcodebuild seem to fix the issue

I opened a bug with apple.

That build argument is not documented anywhere, as far as I can tell. I had already checked the man page and the Xcode Build Setting Reference and never ran across it. Maybe our build server is just a little too slow, but regardless, this fixed the build error. Your command line invocation of xcodebuild will end up looking something like this:

xcodebuild clean build -sdk iphoneos8.3 -workspace MyProject.xcworkspace -scheme MyProject-Adhoc -configuration AdHoc -derivedDataPath $BUILD_PATH -IDEBuildOperationMaxNumberOfConcurrentCompileTasks=1

-IDEBuildOperationMaxNumberOfConcurrentCompileTasks=1 {.p1}

You may never run across “Failure Reason: A file with the name ‘es.lproj’ already exists.”
in your Project but if you ever do I hope this helps you out. Now to go order some upgrades for the server


Chris Carr
Chris Carr
Infrastructure Engineer

Looking for more like this?

Sign up for our monthly newsletter to receive helpful articles, case studies, and stories from our team.

Build vs. buy: How to decide between custom software, off-the-shelf, or hybrid solutions
Business Development

Build vs. buy: How to decide between custom software, off-the-shelf, or hybrid solutions

October 9, 2024

Deciding whether to build custom software or buy off-the-shelf involves weighing factors like cost, flexibility, and scalability. While off-the-shelf solutions are quick and affordable, custom software offers more control and long-term adaptability. Sometimes, a hybrid approach combining both options can be the most effective for a business’s unique needs.

Read more
Automatic artifact downloads inside PR comments
Development

Automatic artifact downloads inside PR comments

June 20, 2024

Discover a method to streamline the process of accessing build artifacts from GitHub Actions by reducing the number of clicks needed to download them directly from a pull request (PR) comment.

Read more
Rapid AI prototyping: Sentiment analysis example
Development

Rapid AI prototyping: Sentiment analysis example

January 29, 2025

Discover how to build a quick, low-cost AI prototype for sentiment analysis without extensive development or heavy infrastructure. In this post, we walk through selecting a pre-trained model from Hugging Face, setting up a lightweight endpoint, and validating whether automated sentiment analysis truly benefits your product. It’s an agile approach that helps you decide if AI is worth a deeper investment.

Read more
View more articles