> On Sep 8, 2016, at 12:43 PM, Brendan Duddridge <[email protected]> wrote: > > So what I've discovered now is that if I simply modify the FMDB.podspec.json > file on my local machine and remove the library reference to sqlite3 then it > works for me now and I get encryption (and all the other goodies from the CBL > SQLCipher static library).
Sounds like CocoaPods is ‘helpfully’ adding libsqlite3.dylib to your target’s linked libraries. I can’t think of any better solution than your workaround (though I know very little about CocoaPods.) This is kind of a weird situation where SQLite and SQLCipher are different libraries with exactly the same API, so it’s not possible to link the same target with both of them. —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/C887C3B3-397E-46CC-8819-F76E3B126B8B%40couchbase.com. For more options, visit https://groups.google.com/d/optout.
