Skip to content

Instantly share code, notes, and snippets.

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

  • Save fabiomsr/4a359d25338f6d9182de9f3158413139 to your computer and use it in GitHub Desktop.

Select an option

Save fabiomsr/4a359d25338f6d9182de9f3158413139 to your computer and use it in GitHub Desktop.
Exclude
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)],
// Exclude example
[configuration: "androidTestCompiler", dependency: testRunner,
options: { exclude module: 'support-annotations'}]
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment