Created
October 10, 2016 16:33
-
-
Save SeongUgJung/f7f194a484b30889847cf76de26f21d0 to your computer and use it in GitHub Desktop.
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-variable.gradle | |
ext { | |
retrofit = '2.1.0' | |
} | |
ext.dependencies = [ | |
retrofit2 : "com.squareup.retrofit2:retrofit:$ext.retrofit", | |
retrofit2_gson : "com.squareup.retrofit2:converter-gson:$ext.retrofit", | |
retrofit2_rxjava2 : "com.jakewharton.retrofit:retrofit2-rxjava2-adapter:$ext.retrofit_rxjava2", | |
] |
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
// build.gradle | |
apply from :'dependencies-variable.gradle' | |
buildscript { | |
// blah blah | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment