I\'m writing an android app using SQLite DB.
I had few experiments and changed the DB version from 1 to 2.
Then my DB schema became stable and because i didn
You don't show where the database is created, which is where the database version is normally assigned (i.e. SQLiteOpenHelper ctor).
Is there any chance you have the database on external file system? Unless you follow the naming conventions, these files are not deleted when the application is removed.