Hi! I’m trying to create a project following Clean...
# announcements
j
Hi! I’m trying to create a project following Clean Architechture. I’m already done setting up different modules. Including the “domain” module which is a pure java module (to make sure there’s no android components that will be used here). However during build time, It could not resolve the classes inside my “domain” module. What could be wrong here? here’s my dependencies inside my app build.gradle
s
Maybe the dependencies in domain module is incorrect. Is your
rxjava_version
declared in Project level gradle ?
or somewhere else. :v
j
yes @sujin
the issue here, is on build time. it cannot resolve the classes I created in my “domain” module
s
There is a slight chance that your dependencies were not implemented in domain. I faced the same error once.