I’ve checked the follow examples <https://github.c...
# android-architecture
m
I’ve checked the follow examples https://github.com/android/architecture-samples but the basic clean project has injection dependence 😞
g
There are a few with Koin that I'd have to google for rn but without DI I don't really know. But you can always abstract the DI out of the example, since it doesn't change how the classes should behave.
a
To increase the testability and get the most of the clean architecture it makes a lot of sense to use DI pattern, it can be your custom service locator or koin or something else but it does make more sense to always use this pattern
👍 4
m
Thanks guys!!! ^_^