Skip to content

Instantly share code, notes, and snippets.

@gokhanaliccii
Last active April 12, 2019 14:16
Show Gist options
  • Save gokhanaliccii/8c4568153b7d9a3956f1381739f3cdbe to your computer and use it in GitHub Desktop.
Save gokhanaliccii/8c4568153b7d9a3956f1381739f3cdbe to your computer and use it in GitHub Desktop.
Sample separate dependency file
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