Skip to content

Instantly share code, notes, and snippets.

@shivam340
Created March 1, 2020 13:40
Show Gist options
  • Save shivam340/29ccc93a9d5820155b7e74b7dbbf28c7 to your computer and use it in GitHub Desktop.
Save shivam340/29ccc93a9d5820155b7e74b7dbbf28c7 to your computer and use it in GitHub Desktop.
Root Project Gradle file
project.buildscript {
// repository links to locate build script dependencies.
repositories {
google()
jcenter()
}
// build script dependencies
dependencies {
val kotlin_version = "1.3.61"
classpath("com.android.tools.build:gradle:4.0.0-alpha09")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlin_version}")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment