How can I delete all entries on specific table using Room Persistence Library? I need to drop table, but I cannot to find any information how to do this.
Only when d
As of Room 1.1.0 you can use clearAllTables() which:
1.1.0
Deletes all rows from all the tables that are registered to this database as entities().