Skip to content

Instantly share code, notes, and snippets.

@sh3lan93
Last active January 2, 2022 22:24
Show Gist options
  • Save sh3lan93/5a6cedaf5aeb17c1d2a16bb58e4d3d48 to your computer and use it in GitHub Desktop.
Save sh3lan93/5a6cedaf5aeb17c1d2a16bb58e4d3d48 to your computer and use it in GitHub Desktop.
Referencing a module inside another module build script
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