Sqlcipher crash on android over time

Hi @developernotes, I used the latest commit you mentioned (Latest sqlcipher-for-android-v3.5.6.zip). I removed the initial check in method keydatabase of SQLiteDatabase

try {
Cursor cursor = rawQuery(“select count(*) from sqlite_master;”, new String[]{});
if(cursor != null){
cursor.moveToFirst();
int count = cursor.getInt(0);
cursor.close();
}
} catch (RuntimeException e) {
Log.e(TAG, e.getMessage(), e);
throw e;
}

then it turns out another issue i post here before: https://github.com/sqlcipher/android-database-sqlcipher/issues/324