2018-08-18 07:04:31 +02:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2024-05-26 23:47:25 +02:00
|
|
|
ext.kotlin_version = '1.9.20'
|
2018-08-18 07:04:31 +02:00
|
|
|
repositories {
|
|
|
|
google()
|
2024-03-19 01:45:04 +01:00
|
|
|
mavenCentral()
|
2018-08-18 07:04:31 +02:00
|
|
|
}
|
|
|
|
dependencies {
|
2024-04-16 06:07:14 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:8.3.2'
|
2018-08-18 07:04:31 +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()
|
2024-03-19 01:45:04 +01:00
|
|
|
mavenCentral()
|
2018-08-18 07:04:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-05 20:28:06 +02:00
|
|
|
tasks.register('clean', Delete) {
|
2018-08-18 07:04:31 +02:00
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|