Skip to content Skip to sidebar Skip to footer

Database_impl Doesn't Exist - Android App With Room

I'm trying to use Room. I get this error (in runtime): java.lang.RuntimeException: cannot find implementation for com.easythings.booky.database.BookyDatabase. BookyDatabase_Im

Solution 1:

The BookyDatabase_Impl most likely isn't being generated ...

a) because you lack the annotations.

b) because you lack an annotation processor.

see Database or Defining data using Room entities.

Post a Comment for "Database_impl Doesn't Exist - Android App With Room"