Last active
September 27, 2016 19:27
-
-
Save fabiomsr/4a359d25338f6d9182de9f3158413139 to your computer and use it in GitHub Desktop.
Exclude
This file contains hidden or 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
| 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