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
This error Occurs Because you are not using DATABASE_VERSION
public class DatabaseHelper extends SQLiteOpenHelper {
private static SQLiteDatabase sqliteDb;
private static DatabaseHelper instance;
private static final int DATABASE_VERSION = 1;
Increase Your version every time you make changes in your database just increase DATABASE_VERSION with +1..