After update to Xcode 5 – ld: symbol(s) not found for architecture armv7 or armv7s linker error
Short answer: Remove Build Active Architecture Only (build setting parameter key is ‘ONLY_ACTIVE_ARCH’) from all of your static libraries’ project build settings or overwrite it with ‘NO’ like in the screenshot below: Detailed answer: The problem is that your static library ‘libCordova.a’ which you’re linking in your main app is only compiled for one architecture … Read more