Last active
April 12, 2019 14:16
-
-
Save gokhanaliccii/8c4568153b7d9a3956f1381739f3cdbe to your computer and use it in GitHub Desktop.
Sample separate dependency file
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 { | |
kotlinVersion = '1.3.11' | |
appCompatVersion = "28.0.0" | |
junit4Version = "4.12" | |
libraries = [ | |
kotlinStdLib : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:" + kotlinVersion, | |
constraintLayout : "com.android.support.constraint:constraint-layout:" + constraintLayoutVersion | |
] | |
testLibraries = [ | |
junit4 : "junit:junit:" + junit4Version | |
] | |
androidTestLibraries = [ | |
testRunner: "com.android.support.test:runner:" + testRunnerVersion | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment