mvvm-dagger2-databinding-retrofit-rxjava2
mvvm-dagger2-databinding-retrofit-rxjava2 copied to clipboard
Sample Android MVVM Architecture Project using with Dagger2, Databinding, Retrofit, RxJava
Sample Android MVVM Architecture Project using with Dagger2, Databinding, Retrofit, RxJava
The New York Times Bestsellers Books App is a sample app based on MVVM pattern and implemented with android architecture components. It shows the latest bestsellers books fetched from NYTimes API. It utilizes trending libraries such as Dagger2, Retrofit, RxJava2, Databinding, Picasso.
Structure
Screenshots
The app consists of following packages:
-
data: It contains all the data accessing and manipulating components.
- api: makes api calls to server, using Retrofit.
- repo: contains repository pattern classes to abstract the source of data.
- di: contains Dagger2 classes -that a fast and lightweight dependency injection framework.
- ui: activity, fragment classes and their corresponding viewmodels.
- utils: utility classes.