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
Had the same problem and I solved it like this.
@Override public void onDowngrade(SQLiteDatabase db, int oldVersion, int newVersion) { db.setVersion(oldVersion); }