Micah Moore
Micah Moore
@AppTyrant @glebd I noticed this as well while profiling. In addition to the purposed adjustment from AppTyrant, another possible solution would be to add an else condition with CFobLicVerifier Lifecycle...
@jakajacky You may want to see my most recent comment on https://github.com/ccgus/fmdb/issues/612 The latest post_install hook should allow FMDB to find the SQLCipher copy of `sqlite3.h` by adjusting the `HEADER_SEARCH_PATHS`
Open/key will not immediately throw an error if the key is incorrect. You'll need to perform some operation on the database to test the key -- typically `SELECT COUNT(*) FROM...
I believe 2.7.7 may not have been published to cocoa pods. 2.7.5 looks like it was the latest version which was published.
@bgalamb You'll want to have a look at this [post](https://discuss.zetetic.net/t/important-advisory-sqlcipher-with-xcode-9-and-new-sdks/2371) on the SQLCipher discussion forum as to why this no longer works out of the box. You can build [SQLCipher](https://github.com/sqlcipher/sqlcipher)...
@pbrewczynski How are you integrating? cocoapods? I just re-tried integration via cocoapods (v1.5.3) and Xcode (10.1) using swift and it worked fine out of the box for me using the...
@pbrewczynski Try removing the standard `pod 'FMDB'` `pod 'FMDB/SQLCipher'` should include all the standard FMDB stuff + SQLCipher and including the standard non-SQLCipher one could be causing the conflict for...
@niuxinhuai My recommendation to @pbrewczynski was to delete the standard `pod 'FMDB'` from his Podfile as it could cause conflicts. I'm assuming that worked for him as he didn't respond....
(https://github.com/ccgus/fmdb/commit/18152d3ea819d5a65a682ad9f3b22dbbb3c2423e) was merged in which I'm hopeful will resolve this issue @Boobby69 @andrewcl Does the latest adjustment merged in work out of the box for you guys now? @tomblench Does...
I may be missing something, but is the "author" column in your Books table the authorID (which it looks like it is from the query to fetch from the Author...