I'm with a doubt about SQLite in Android. In the SQLite documentation, they say that I can encrypt my database using the following command before anything:
PRAGMA key=text-key;
PRAGMA hexkey=hexadecimal-key;
But when I use this in Android the database isn't encrypted:
db.execSQL("PRAGMA key=<mykey>");
db.execSQL("PRAGMA key=<myhexakey>");
For now, I'm using SQLCipher to encrypt my database, but I don't want to use this because of the dependencies (allright, I know that is not too large).
I try to search and don't find anything about it.
Can anyone help me?