android10 / Android-CleanArchitecture

This is a sample app that is part of a series of blog posts I have written about how to architect an android application using Uncle Bob's clean architecture approach.
Apache License 2.0
15.51k stars 3.32k forks source link

Why let the rxjava intrude into the domain module? #295

Open sheaye opened 5 years ago

sheaye commented 5 years ago

The rxjava seemed to make the domain not that clean.

artkoenig commented 3 years ago

Using RxJava in the domain logic is exactly the opposite of delaying technical decisions and reducing coupling to external frameworks, as C. Martin suggests in his lecture here.