Skip to content

Instantly share code, notes, and snippets.

@illuzor
Last active September 28, 2018 21:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save illuzor/ea3311785f9561192b79c2e699554b00 to your computer and use it in GitHub Desktop.
Save illuzor/ea3311785f9561192b79c2e699554b00 to your computer and use it in GitHub Desktop.
buildscript {
ext {
kotlin_ver = '1.2.71'
retrofit_ver = '2.4.0'
glide_ver = '4.8.0'
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_ver"
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment