All Questions
3 questions
2
votes
1
answer
507
views
Is it good approach to create new viewModel class for every new Ui(Fragment/Activity)?
I am working on a project in which I am following clean Architecture from Google ... and for making code testable I am following an approach in which,I am creating a new
ViewModel Class
ViewModel ...
12
votes
3
answers
17k
views
Should business logic be in the app or in the backend?
I've recently started applying the Clean Architecture while developing an Android application. And so I divided my application in 4 different parts.
Data layer
Contains the implementation of ...
36
votes
4
answers
22k
views
Clean Architecture - Too many Use Case Classes
I'm going into Clean Architecture and lift my Android level from MVC to MVP, introducing DI with Dagger 2, Reactivity with RxJava 2, and of course Java 8.
In MVP clean architecture there is a layer ...