error: There is a problem with the query: [SQLITE_ERROR] SQL error or missing database (no such table: task)
This Error is shown, How can i possibly fix this?
I'm following this tutorial
error: There is a problem with the query: [SQLITE_ERROR] SQL error or missing database (no such table: task)
This Error is shown, How can i possibly fix this?
I'm following this tutorial
That tutorial is broken.
For your specific problem, change:
@Query("SELECT * FROM task")
to:
@Query("SELECT * FROM Recipe")
and hope for the best.