We have a sqlite database in our Application. Its working fine for all the users but few of them experiencing the Caused by: android.database.sqlite.SQLiteException: n
Even if you have coded for few tables and upgraded database, your app will crash. What you have to do is for each and every table create database changes upgrade the DATABASE_VERSION
If you have few DatabaseHelper classes(read this), you have to add this method to your db helper:
@Override
public void onOpen(SQLiteDatabase db) {
onCreate(db);
}