Skip to content

umutbayramoglu/mvvm-dagger2-databinding-retrofit-rxjava2

Repository files navigation

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:

  1. 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.
  2. di: contains Dagger2 classes -that a fast and lightweight dependency injection framework.
  3. ui: activity, fragment classes and their corresponding viewmodels.
  4. utils: utility classes.

Libraries: