I am using SQLCipher to encrypt the android database. I am getting typecast error (Can not convert from CursorLoader to Cursor) in the line for
public Loader<Cursor> onCreateLoader(int id, Bundle args){
..
..
return new CursorLoader(this, CONTENT_URI, projection, selection, null, null);
}
It will work if I am using the default Android database cursor.