Added option to clear local contacts

This commit is contained in:
M66B
2019-02-17 16:45:19 +00:00
parent 38fc14722f
commit c4208d1a61
2 changed files with 28 additions and 0 deletions

View File

@@ -55,4 +55,7 @@ public interface DaoContact {
@Update
int updateContact(EntityContact contact);
@Query("DELETE from contact")
int clearContacts();
}