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
I have had the same issue, when I created an update for app. By google documentation onCreate() from SQLiteOpenHelper is called only when the app is installed first time. So if you want to add a table you need to increment the database version and add
onUpgrade() { your_table.create(database) }
@Override
public void onUpgrade(final SQLiteDatabase database,
final int oldVersion,
final int newVersion) {
YourTable.onCreate(database);
}