And instead of `Map<Id, progress>`, you shou...
# android-architecture
e
And instead of
Map<Id, progress>
, you should be using
Map<Id, LiveData<Int>>
, such that you can bind the live data to views and update accordingly.
👍 2