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
sujin
03/02/2018, 3:33 AM
Maybe the dependencies in domain module is incorrect. Is your
rxjava_version
declared in Project level gradle ?
sujin
03/02/2018, 3:34 AM
or somewhere else. :v
j
jermainedilao
03/02/2018, 3:37 AM
yes @sujin
jermainedilao
03/02/2018, 3:37 AM
the issue here, is on build time. it cannot resolve the classes I created in my “domain” module
s
sujin
03/02/2018, 3:43 AM
There is a slight chance that your dependencies were not implemented in domain. I faced the same error once.