Change SQLite Database Version Number
You can also set it via the setVersion
SqlLiteDatabase method.
Source: http://developer.android.com/reference/android/database/sqlite/SQLiteDatabase.html#setVersion(int)
To manually update the version to 4 you execute the following SQL statement:
PRAGMA user_version = 4
Another way to change the version of your Sqlite Database. You can use DB Browser for SQLite:
- Open the database file with "DB Browser for SQLite".
- Change the "User Version" number to whatever number you want
- Click the "Save" button