Last active
September 19, 2016 20:27
-
-
Save fabiomsr/7c983b7c503f1c60c92e6a7809e4de39 to your computer and use it in GitHub Desktop.
Domain dependency
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)], | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment