Removed redundant dependencies for WorkManager and EasyPreferences, TaskDescription colour changed to colorAccent

This commit is contained in:
Deniz Düzgören
2019-07-06 14:18:59 +02:00
parent d93407e98f
commit 3166fadf7f
15 changed files with 137 additions and 194 deletions
@@ -20,4 +20,13 @@ public interface SubstDao {
@Query("DELETE FROM subst_table")
fun deleteAllSubst()
@get:Query("SELECT * FROM food_table ORDER BY priority ASC")
val allFoods: LiveData<List<Food>>
@Insert
fun insertFood(food: Food)
@Query("DELETE FROM food_table")
fun deleteAllFoods()
}