Export/import settings

Fixes #45
This commit is contained in:
M66B
2018-09-14 11:33:22 +00:00
parent 5ec2225c4e
commit b38a735437
12 changed files with 427 additions and 1 deletions

View File

@@ -29,6 +29,9 @@ import androidx.room.Update;
@Dao
public interface DaoAccount {
@Query("SELECT * FROM account")
List<EntityAccount> getAccounts();
@Query("SELECT * FROM account WHERE synchronize = :synchronize")
List<EntityAccount> getAccounts(boolean synchronize);