Skip to content

hitman0786/clean-architecture-mvvm-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 

Repository files navigation

clean-architecture-mvvm-app

This has 3 layers Domain, Data and Presenter. Each layer has its own responsibility. Domain has business logic and it has only kotlin code and does not have any android specific code.
Data Layer has networking and local database code . Here Retrofit and Room is used. Presenter has all android specific code with mvvm design.

This project has unit test cases for each layer separately with Junit, Mockito and Robolectric