You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/Users/brodybits/Documents/cbwork/android-database-sqlcipher/android-database-sqlcipher/src/main/obj/local/armeabi/objs/sqlcipher/net_sqlcipher_database_SQLiteDatabase.o: In function `sqlcipher::dbclose(_JNIEnv*, _jobject*)':
/Users/brodybits/Documents/cbwork/android-database-sqlcipher/android-database-sqlcipher/src/main/cpp/net_sqlcipher_database_SQLiteDatabase.cpp:303: undefined reference to `sqlite3_trace'
/Users/brodybits/Documents/cbwork/android-database-sqlcipher/android-database-sqlcipher/src/main/cpp/net_sqlcipher_database_SQLiteDatabase.cpp:308: undefined reference to `sqlite3_profile'
/Users/brodybits/Documents/cbwork/android-database-sqlcipher/android-database-sqlcipher/src/main/obj/local/armeabi/objs/sqlcipher/net_sqlcipher_database_SQLiteDatabase.o: In function `sqlcipher::enableSqlTracing(_JNIEnv*, _jobject*, _jstring*)':
/Users/brodybits/Documents/cbwork/android-database-sqlcipher/android-database-sqlcipher/src/main/cpp/net_sqlcipher_database_SQLiteDatabase.cpp:280: undefined reference to `sqlite3_trace'
/Users/brodybits/Documents/cbwork/android-database-sqlcipher/android-database-sqlcipher/src/main/obj/local/armeabi/objs/sqlcipher/net_sqlcipher_database_SQLiteDatabase.o: In function `sqlcipher::enableSqlProfiling(_JNIEnv*, _jobject*, _jstring*)':
/Users/brodybits/Documents/cbwork/android-database-sqlcipher/android-database-sqlcipher/src/main/cpp/net_sqlcipher_database_SQLiteDatabase.cpp:292: undefined reference to `sqlite3_profile'
When I tried this flag on sqlcipher / android-database-sqlcipher I got the following errors:
As described in https://www.sqlite.org/c3ref/profile.html the solution is for sqlcipher / android-database-sqlcipher to use
sqlite3_trace_v2
with SQLITE_TRACE_ constants (https://www.sqlite.org/c3ref/c_trace.html) instead ofsqlite3_trace
andsqlite3_profile
inandroid-database-sqlcipher/src/main/cpp/net_sqlcipher_database_SQLiteDatabase.cpp
.The text was updated successfully, but these errors were encountered: