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
@@ -6,11 +6,10 @@ import androidx.lifecycle.LiveData
public class SubstViewModel(application: Application) : AndroidViewModel(application) {
private val repository: SubstRepository
private val repository: SubstRepository = SubstRepository(application)
val allSubst: LiveData<List<Subst>>?
init {
repository = SubstRepository(application)
allSubst = repository.allSubst
}