I'm developing my first app and using the following code I see what is my SQLite version:
Cursor cursor = SQLiteDatabase.openOrCreateDatabase(":memory:", null).rawQuery("select sqlite_version() AS sqlite_version", null);
String sqliteVersion = "";
while(cursor.moveToNext())
sqliteVersion += cursor.getString(0);
Log.e("Version", sqliteVersion);
My version is 3.7.11.
Since I need to use some new features, how to upgrade it to the latest version?