Skip to content

Instantly share code, notes, and snippets.

@illuzor
Last active October 4, 2018 20:49
Embed
What would you like to do?
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