O problema é que alguns dispositivos estão atualizando seu aplicativo, então o
checkDataBase()
retornando true
, então você não está chamando copyDataBase()
. Então você está usando o banco de dados anterior que não tem generalSettings
table.Para resolver isso, tente:@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
if(newVersion>oldVersion)
copyDatabase();
}
e também atualize seu construtor:
public InstallDB(Context context, String name) {
super(context, name, null, DB_VERSION);
// DB_VERSION is an int,update it every new build
this.ctx = context;
this.DBNAME = name;
this.DBPATH = this.ctx.getDatabasePath(DBNAME).getAbsolutePath();
Log.e("Path 1", DBPATH);
}