Rx Mvvm Android Versions Save

My way to MVVM using KotlinX Coroutines and Android data-binding

3.0.0

3 years ago

Remove rx-java dependency and replace it with KotlinX-Coroutines

2.8.0

3 years ago

This release tackle some update migrations like moving from kotlintest to kotest and arrow Option deprecations.

Apart from that, just minor changes in order to be up to date with other libraries.

2.7.1

4 years ago

Key layers have been unit tested using multiple tecniques

2.7.0

5 years ago

Simplify ViewModel in order to only have one LiveData<Input> (aka query property) and one LiveData<Output> (aka state property).

Move handling state logic to subscriber layer, aka the UI, simplify binding with only one state_change binding per required view

This change tries to simplify the testing effort

2.6.0

5 years ago

Migrate support library to AndroidX, this introduces breaking changes but not add nothing so only increase minor version.

Also, update other libs and tools to their last stable version.

2.5.0

5 years ago

Create a new property on QueryViewModel error to describe an error on UI Create a new QueryViewState error to model the state To not duplicate code on data sources, errors are handled on ComicRepository Model error using Either<ComicError, List<T>> Empty results on ComicLocalDataSource produce EmptyResultsError Any network error produce NetworkError Suggestions will display error as a single suggestion A search will display error as text on the screen, hiding result list Error suggestions do not propagate search results

2.4.1

5 years ago

2.4.0

5 years ago

create ComicLocalDataSource & ComicRemoteDataSource polymorphic on T refactor ComicRepository to use ComicLocalDataSource & ComicRemoteDataSource and polymorphic on T create specific datasources & repository for Suggestion create specific datasources & repository for Search

reorganise packages to reflect data common feature.

2.3.0

6 years ago

create QueryViewModel as base ViewModel class for suggestion and search. create QueryViewState to handle QueryViewModel states. SuggestionViewModel, only defines how to go from Flowable<String> to Flowable<List<String>> SuggestionViewModel, only defines how to go from Flowable<String> to Flowable<List<Volume>>

reorganise packages to reflect query common feature.

screen shot 2018-04-20 at 19 16 07

2.2.0

6 years ago

Keep into a ViewState all possible state of a ViewModel.

Fix LiveData nullability on BindingAdapters