Skip to content

Instantly share code, notes, and snippets.

@bipinvaylu
Created September 22, 2019 11:41
Show Gist options
  • Save bipinvaylu/95255c804ac5f25ebb0ae3cae67d7887 to your computer and use it in GitHub Desktop.
Save bipinvaylu/95255c804ac5f25ebb0ae3cae67d7887 to your computer and use it in GitHub Desktop.
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
//TODO: First step
ext.kotlin_version = '1.3.30'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
//TODO: First step
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment