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
In my case, the cause of the problem was using the wrong table name. The table name I chose for my model class was different from the class name. I erroneously used the class name while querying my Data-Access-Object interface.
@Query("SELECT * FROM tablename")
Check your table name to make sure they match with the table name annotated into the model class.
I hope this helps. Merry coding!