Skip to content

Instantly share code, notes, and snippets.

@fabiomsr
Last active September 19, 2016 20:27
Show Gist options
  • Select an option

  • Save fabiomsr/7c983b7c503f1c60c92e6a7809e4de39 to your computer and use it in GitHub Desktop.

Select an option

Save fabiomsr/7c983b7c503f1c60c92e6a7809e4de39 to your computer and use it in GitHub Desktop.
Domain dependency
ext {
// Versions
/// Libs
/// Modules dependencies
appDependencies = [
[configuration: "compile", dependency: androidLibs.appCompat],
[configuration: "compile", dependency: libs.dagger],
[configuration: "apt", dependency: libs.daggerCompiler],
[configuration: "compile", dependency: libs.rxAndroid],
[configuration: "compile", dependency: libs.rxJava],
// Domain dependency
[configuration: "compile", dependency: project(modules.domain)],
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment