28 lines
654 B
Groovy
Raw Permalink Normal View History

2017-01-20 21:46:11 +01:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2021-04-28 09:05:54 -04:00
ext.kotlin_version = '1.4.32'
2017-01-20 21:46:11 +01:00
repositories {
2021-04-28 09:05:54 -04:00
mavenCentral()
google()
2017-01-20 21:46:11 +01:00
}
dependencies {
2021-11-28 10:53:40 -05:00
classpath 'com.android.tools.build:gradle:7.0.3'
2017-01-20 21:46:11 +01:00
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 {
2021-04-28 09:05:54 -04:00
mavenCentral()
google()
2017-01-20 21:46:11 +01:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}