Fernando Cejas
Fernando Cejas
@tigerteamdc2 I would encapsulate everything in a UseCase class and inject it wherever you need.
@andrewjohnson90 > The Data layer, in his case, it's the one containing the entities, though the most inner layer. That is wrong, data layer contains data entities and this layer...
@andrewjohnson90 you wanna write one maybe? :smile:
@Trikke you saved me a lot of words. Thanks! Amén!
@mefilt why would they be part of the presentation if they are not dealing with any UI? :)
@Oziomajnr if you go the README file...you will see the links to the posts that lead to this repo: - https://fernandocejas.com/blog/engineering/2014-09-03-architecting-android-the-clean-way/ - https://fernandocejas.com/blog/engineering/2015-07-18-architecting-android-the-evolution/ - https://fernandocejas.com/blog/engineering/2019-05-08-architecting-android-reloaded/ Also as a result, there...
@amatkivskiy @kuassivi really appreciate the input and I do understand the needs, so that is why I started a discussion here: https://github.com/android10/Android-CleanArchitecture/issues/112 Feel free to join, we wanna take the...
Use RxJava! You have many operators to compose observables: https://github.com/ReactiveX/RxJava/wiki/Alphabetical-List-of-Observable-Operators
The only thing I would add here is that a UserRepository should not know anything about signing up users, it is a repository and its responsibility is to work with...
@spirosoik yes. My comment was mostly a naming convention. A repository abstracts the origin of your data and should not know anything about login any user :)