Skip to content

Instantly share code, notes, and snippets.

@illuzor
Last active October 4, 2018 20:49
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/7f5006e05f220aa91b1210558f18158b to your computer and use it in GitHub Desktop.
Save illuzor/7f5006e05f220aa91b1210558f18158b to your computer and use it in GitHub Desktop.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath("com.android.tools.build:gradle:3.2.0")
classpath(kotlin("gradle-plugin", version = "1.2.71"))
}
}
allprojects {
repositories {
google()
jcenter()
}
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment