The CouchbaseLite.framework you're linking to has the path "Build/Products/Debug-iphoneos/CouchbaseLite.framework". This is a build for iOS devices, not the simulator. That's why you're getting link errors saying that x86-64 symbols are missing: the framework you're using only has ARM code.
The framework you want is at "Build/Products/Debug-iOS-universal/CouchbaseLite.framework". This is a version that's had the ARM and x86 builds merged together into one. I would not recommend adding Couchbase Lite as a sub-project as you're doing. Xcode tends to get really confused when multiple targets build products with the same names, and you can randomly get the wrong one; this may have happened to you. —Jens -- You received this message because you are subscribed to the Google Groups "Couchbase Mobile" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/mobile-couchbase/20a52ee9-e092-4b46-96c4-7c8592091f20%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
