Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 810 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 810 Bytes

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