@Database(entities = arrayOf(Task::class), version = 1, exportSchema = false) | |
abstract class AppDatabase : RoomDatabase() { | |
abstract fun taskDao(): TaskDao | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment