Troubleshooting Xcode 6 “file already exists” XIB build errors
May 15, 2015When 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 issueI 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…
Looking for more like this?
Sign up for our monthly newsletter to receive helpful articles, case studies, and stories from our team.

Business Model Canvas: Helping business leaders create meaningful digital products
January 17, 2024When it comes to custom software, it’s easy to feel stuck between needing to deliver value quickly, while also ensuring meaningful, long-lasting results. Learn why the Business Model Canvas can help you identify the right digital product for your business needs.
Read more
A 3-part framework for getting your software project approved internally
September 25, 2024Explore this strategic approach to securing internal buy-in for your custom software projects. The framework emphasizes starting with a lean business case, engaging key stakeholders across the organization to align economic, operational, and technical considerations, and embracing an iterative learning process to make informed decisions.
Read more
A Study of Human-Centered Design Off Screen - Burning Man Festival
February 13, 2023Kourtney examines the Burning Man Festival and its fascinating history of human-centered design
Read more