Files
teapod/build.gradle
T

26 lines
652 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 {
2022-02-01 17:20:58 +01:00
ext.kotlin_version = "1.6.10"
2020-10-08 22:20:20 +02:00
repositories {
google()
2021-05-09 19:32:31 +02:00
mavenCentral()
2020-10-08 22:20:20 +02:00
}
dependencies {
2022-02-01 17:20:58 +01:00
classpath 'com.android.tools.build:gradle:7.1.0'
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()
2021-04-17 21:38:03 +02:00
mavenCentral()
2020-10-08 22:20:20 +02:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}