Last active
August 14, 2017 20:08
-
-
Save caseykulm/7487719ad5fb519b5f75bde3c37d32b0 to your computer and use it in GitHub Desktop.
Full version templating Gradle
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
dependencies { | |
implementation deps.dagger | |
} |
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
buildscript { | |
ext.versions = [ | |
daggerVersion: "2.3.0" | |
] | |
ext.deps = [ | |
dagger: “com.google.dagger:dagger:$versions.daggerVersion” | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment