Last active
January 2, 2022 22:24
-
-
Save sh3lan93/5a6cedaf5aeb17c1d2a16bb58e4d3d48 to your computer and use it in GitHub Desktop.
Referencing a module inside another module build script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dependencies { | |
... | |
implementation(project(path = ":feat-cart")) | |
implementation(project(path = ":feat-products")) | |
implementation(project(path = ":feat-authentication")) | |
implementation(project(path = ":feat-addresses")) | |
implementation(project(path = ":feat-checkout")) | |
implementation(project(path = ":feat-analytics")) | |
implementation(project(path = ":feat-filter-ui")) | |
implementation(project(path = ":feat-customer-service")) | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment