Skip to content

Instantly share code, notes, and snippets.

@coroutineDispatcher
Created December 13, 2019 11:39
Show Gist options
  • Save coroutineDispatcher/b231056bf75e6cef53ec62536730d6c9 to your computer and use it in GitHub Desktop.
Save coroutineDispatcher/b231056bf75e6cef53ec62536730d6c9 to your computer and use it in GitHub Desktop.
buildscript {
val kotlinVersion by rootProject.extra { "1.3.61" }
repositories {
google()
jcenter()
}
dependencies {
classpath("com.android.tools.build:gradle:3.5.3")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
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