Kevin Barrientos

Results 8 comments of Kevin Barrientos

Why do you say the current solution doesn't allow you to pass an entire model? You just have to set it as a filed in your Param object. Just remember...

@wilsoncastiblanco remember that when you build a platform specific application, at some point you'll depend on those details. The idea is to abstract the details as much as we can...

If the only task of your use case is to retrieve some data, yes it would like seen as you say. But there will be other times where your use...

Maybe this [thread](https://github.com/android10/Android-CleanArchitecture/issues/66) help you to get some ideas. What I do in those scenarios is to implement an event bus. Events are pushed from Data layer and a Presenter...

The way I see it MVVM is just another design pattern that you can implement in and for the Presentation Layer, everything else may remain the same. So I would...

@NerdAnonymous no, you're confused. Domain must not depend on any other layer. It is the most inner layer and therefore the most abstract. If you need to fetch some data,...

What do you do when you have features that are somehow related to each other but at the same time they should be independent? For instance suppose that your app...

@android10 I think that the problem that I encounter when packaging by feature is when two features share a Use Case. What should we do then? Do we use the...