/Simple_MVP_Dagger

This repository contains simple VMP with dagger.

Primary LanguageJava

Simple VMP

Android

This repository contains simple VMP with dagger.

Preview 🎉

Library References

  1. Java
  2. MVP
  3. Dagger2

Package Structure

com.anelcc.mvp    # Root Package
.
├── app                 # Application component, modules, etc.
├── model               # Model classes
├── repository          # Repository to handle network API.
│
└── login               # Activity/View layer
    │── Activity        # Screen Activity and ViewModel
    │── Interface       # MVP Interface
    └── Model