I\'m trying my hand at using Android Room and after following this tutorial I\'m getting the following error when i try to build the app:
Error:(23, 27) error: The
If you just added a new table, just update your Database class (That one class extending the RoomDatabase() class) and update the entities annotation
@Database(entities = [User::class, NewTableHere::class], version = 1)
abstract class AppDatabase : RoomDatabase() {
Wish it saves you time on searching for answer, happy coding.