2019-12-31 18:19:35 +01:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2024-06-03 19:07:39 +02:00
|
|
|
ext.kotlin_version = '2.0.0'
|
2019-12-31 18:19:35 +01:00
|
|
|
repositories {
|
2023-06-25 14:51:13 +02:00
|
|
|
mavenCentral()
|
2019-12-31 18:19:35 +01:00
|
|
|
google()
|
|
|
|
}
|
|
|
|
dependencies {
|
2024-06-03 19:07:39 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:8.4.1'
|
2020-01-20 19:24:43 +01:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2023-11-04 12:05:01 +01:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
2019-12-31 18:19:35 +01:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-04 12:05:01 +01:00
|
|
|
plugins {
|
2024-05-15 22:47:24 +02:00
|
|
|
id 'org.jetbrains.kotlin.plugin.serialization' version "$kotlin_version"
|
2023-11-04 12:05:01 +01:00
|
|
|
}
|
|
|
|
|
2019-12-31 18:19:35 +01:00
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2023-06-25 14:51:13 +02:00
|
|
|
mavenCentral()
|
2023-10-21 10:23:18 +02:00
|
|
|
maven { url "https://jitpack.io" }
|
2019-12-31 18:19:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-21 10:23:18 +02:00
|
|
|
tasks.register('clean', Delete) {
|
2023-12-15 00:25:04 +04:00
|
|
|
delete rootProject.layout.buildDirectory
|
2019-12-31 18:19:35 +01:00
|
|
|
}
|