Can I reference the :notifications:contract module...
# gradle
u
Can I reference the notificationscontract module as dependency in the :impl somehow relatively? this is a pattern in my project, and the impl always depends on contract, and its annoying to always use the full name is there a way I could to
implementation project("..contract")
or something like that?
v
Did you try
"..:contract"
? If that doesn't work I guess what you need is
parent.project("contract")
.
u
dots dont work but parent does, thanks!