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.

Application Architecture with SwiftUI
Development iOS

Application Architecture with SwiftUI

June 15, 2022

An overview of mobile application system architecture using SwiftUI

Read more
Kotlin Multiplatform
Android Development iOS

Kotlin Multiplatform

July 14, 2022

A brief look at Kotlin Multiplatform Mobile, a newer cross-platform mobile application framework.

Read more
2022 Best and Brightest Winners in West Michigan
Team

2022 Best and Brightest Winners in West Michigan

May 2, 2022

The Best and Brightest Companies to Work For® competition identifies and honors organizations that display a commitment to excellence in operations and employee enrichment that lead to increased productivity and financial performance!

Read more
View more articles