Join Slack
Powered by
Can I reference the :notifications:contract module...
# gradle
u
ursus
11/07/2021, 10:59 PM
Can I reference the
notifications
contract 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
Vampire
11/07/2021, 11:27 PM
Did you try
"..:contract"
? If that doesn't work I guess what you need is
parent.project("contract")
.
u
ursus
11/08/2021, 12:08 AM
dots dont work but parent does, thanks!
4
Views
Open in Slack
Previous
Next