Skip to content

Instantly share code, notes, and snippets.

@prokash-sarkar
Created February 9, 2021 05:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save prokash-sarkar/bd117371dbe5e872eb95de0dae5b2704 to your computer and use it in GitHub Desktop.
Save prokash-sarkar/bd117371dbe5e872eb95de0dae5b2704 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 {
ext.kotlinVersion = "1.4.21"
ext.jacoco_version = '0.8.6'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.jacoco:org.jacoco.core:$jacoco_version"
}
}
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