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
Room names tables the same as their associated entities. In your DAO, TABLE_ITEMS needs to be PermitItem, because your entity is PermitItem. Or, add the tableName property to the @Entity annotation, to tell Room some other name to use for the table.
TABLE_ITEMS
PermitItem
tableName
@Entity