jamescodingnow
08/08/2023, 2:33 PM--Module-app
--Module-core
--Module-feature
|--SubModule-home
|--SubModule-food
|--SubSubModule-pasta
|--SubModule-driver
My question is that How can I inject SubSubModule-pasta
into SubModule-food
without adding implementation(…)
into gradle of SubModule-food
? Basically, I do not want to have dependencies between sub-modules but I would like to access. Thank you!Stylianos Gakis
08/08/2023, 2:34 PMjamescodingnow
08/08/2023, 2:45 PMsubsubmodule
.Stylianos Gakis
08/08/2023, 2:49 PMimplementation
or api
.jamescodingnow
08/08/2023, 3:27 PM-pasta
in -food
without importing.
I think, this is not possible because if I do not import -pasta
, I cannot define property type in -food
. If there is any other option, feel free to share!Landry Norris
08/08/2023, 5:36 PM