Accept send intents

This commit is contained in:
M66B
2018-08-23 11:18:07 +00:00
parent 510bc3be43
commit e86a05b5da
4 changed files with 200 additions and 95 deletions

View File

@@ -41,6 +41,9 @@ public interface DaoAccount {
@Query("SELECT * FROM account WHERE id = :id")
EntityAccount getAccount(long id);
@Query("SELECT * FROM account WHERE `primary`")
EntityAccount getPrimaryAccount();
@Query("SELECT * FROM account WHERE `primary`")
LiveData<EntityAccount> livePrimaryAccount();