Hey all. Anybody used SQLCipher? From their ios im...
# multiplatform
a
Hey all. Anybody used SQLCipher? From their ios implementation they use a method
Copy code
sqlite3_key
However when I built SQLCipher for my multiplatform project, I can't find this method. It is using SQLCipher because when I type
Copy code
sqlite3_open
it imports
Copy code
import com.mylibrary.sqlcipher.sqlite3_open
Any ideas why I can't find sqlite3_key? I can see in the sqlite.h file that I brought into Android Studio, that sqlite3_key is there, however above it, it says
Copy code
/* BEGIN SQLCIPHER */
#ifdef SQLITE_HAS_CODEC
so maybe it was not built correctly?