Your friend has tried to implement the example mentioned in the theory. However, he is having some issues within this class. What's the problem?
@Database(entities = [Person::class], version = 2)
class AppDatabase : RoomDatabase() {
abstract fun getPersonDao(): PersonDao
}