You cannot secure information contained on the App. It's impossible.
An attacker can reverse all of your code.
An attacker can deobfuscate all of your code.
A preloaded, encrypted DB file can be decrypted using the key stored on the App.
Particularly in code like this:
String dbPath = this.getDatabasePath("Encrypted.db").getPath();
SQLiteDatabase db = SQLiteDatabase.openOrCreateDatabase(dbPath,
**DATABASEKEY**, null);
SQLCipher is not intended to secure user data against attackers but exists to secure user data against other Apps.
Your efforts will slow an attacker down slightly.
If you want to sensitive data on the App, don't store it on the App or in the data directory. Design your App to communicate with a server, although that bring in a whole other mess of things to consider (Web App Security).