Skip to content

Instantly share code, notes, and snippets.

@lamvann
Last active May 25, 2020 19:20
Show Gist options
  • Save lamvann/03e96b2dd79a25d772668b14db9cbadf to your computer and use it in GitHub Desktop.
Save lamvann/03e96b2dd79a25d772668b14db9cbadf to your computer and use it in GitHub Desktop.
Starting point of a top-level project gradle file in Kotlin DSL
plugins {
`kotlin-dsl`
}
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath("com.android.tools.build:gradle:3.6.3")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.72")
}
}
allprojects {
repositories {
google()
jcenter()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment