teapod/build.gradle

26 lines
651 B
Groovy
Raw Normal View History

2020-10-08 22:20:20 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2021-12-01 20:46:19 +01:00
ext.kotlin_version = "1.6.0"
2020-10-08 22:20:20 +02:00
repositories {
google()
mavenCentral()
2020-10-08 22:20:20 +02:00
}
dependencies {
2021-12-01 20:46:19 +01:00
classpath 'com.android.tools.build:gradle:7.0.3'
2020-10-08 22:20:20 +02: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 {
google()
mavenCentral()
2020-10-08 22:20:20 +02:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}