teapod/build.gradle

28 lines
714 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 {
ext.kotlin_version = "1.6.10"
ext.ktor_version = "1.6.8"
ext.exo_version = "2.17.1"
2020-10-08 22:20:20 +02:00
repositories {
google()
mavenCentral()
2020-10-08 22:20:20 +02:00
}
dependencies {
2022-04-15 11:04:06 +02:00
classpath 'com.android.tools.build:gradle:7.1.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
}