A new XCode project has Debug and Release Configurations. I\'ve added a new one under \"ProjectName > Info\" called \"development\", which is for now a duplicate of \"debug\".>
The problem is that Xcode will expect to find the libraries inside a folder named after your custom configuration. You can add the custom configuration to each library you use, or better follow the steps below to make it use the libraries built via the Release configuration.
Steps:
"$(BUILD_DIR)/Release$(EFFECTIVE_PLATFORM_NAME)"
(inspired by this post)