I\'m receiving this error:
android.database.sqlite.SQLiteException: no such table: setting (code 1): , while compiling: SELECT * FROM setting
You have changed the database structure while app is already installed but onCreate
will only be executed once so you have two option to make your changes reflect into database
1.) Increment the database version by one to execute onUpgrade
to apply changes into existing database
2.) Manually uninstall the app from your phone to execute onCreate