Last active
August 14, 2017 20:28
-
-
Save caseykulm/904bd6d4c58a6d155545e9048e13470c to your computer and use it in GitHub Desktop.
Case 1 (Templating Solution): Many dependencies from one project used
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.retrofit | |
implementation deps.retrofitGson | |
} |
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 = [ | |
retrofitVersion: "2.3.0" | |
] | |
ext.deps = [ | |
retrofit: "com.squareup.retrofit2:retrofit:$versions.retrofitVersion", | |
retrofitGson: "com.squareup.retrofit2:converter-gson:$versions.retrofitVersion" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment