2020-05-12 14:52:56 +02:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2024-07-31 17:08:41 +02:00
|
|
|
ext.kotlin_version = '2.0.0'
|
2025-02-18 04:20:27 +01:00
|
|
|
ext.android_plugin_version = '8.8.1'
|
2020-05-12 14:52:56 +02:00
|
|
|
repositories {
|
|
|
|
google()
|
2024-08-31 23:07:48 +02:00
|
|
|
mavenCentral()
|
2020-05-12 14:52:56 +02:00
|
|
|
|
|
|
|
}
|
2024-07-31 17:08:41 +02:00
|
|
|
|
2020-05-12 14:52:56 +02:00
|
|
|
dependencies {
|
2025-02-18 04:20:27 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:8.8.1'
|
2020-05-12 14:52:56 +02:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2024-07-31 17:08:41 +02:00
|
|
|
classpath "com.android.tools.build:gradle:$android_plugin_version"
|
2024-12-23 02:29:17 +01:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
|
|
|
|
2020-05-12 14:52:56 +02:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2024-08-31 23:07:48 +02:00
|
|
|
mavenCentral()
|
2020-05-12 14:52:56 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-31 23:07:48 +02:00
|
|
|
tasks.register('clean', Delete) {
|
|
|
|
delete layout.buildDirectory
|
2020-05-12 14:52:56 +02:00
|
|
|
}
|
2024-07-31 17:08:41 +02:00
|
|
|
|