2017-01-03 18:32:45 +01:00
|
|
|
buildscript {
|
|
|
|
|
repositories {
|
2018-03-10 12:49:32 +01:00
|
|
|
google()
|
2021-07-25 13:48:13 +02:00
|
|
|
mavenCentral()
|
2017-01-03 18:32:45 +01:00
|
|
|
}
|
|
|
|
|
dependencies {
|
2024-12-29 12:26:58 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:8.7.3'
|
2017-01-03 18:32:45 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
allprojects {
|
2024-08-14 20:00:09 +02:00
|
|
|
configurations.configureEach {
|
|
|
|
|
resolutionStrategy.eachDependency { details ->
|
|
|
|
|
if (details.requested.group == 'org.jetbrains.kotlin') {
|
|
|
|
|
details.useVersion "1.8.22"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-01-03 18:32:45 +01:00
|
|
|
repositories {
|
2018-03-10 12:49:32 +01:00
|
|
|
google()
|
2021-07-25 13:48:13 +02:00
|
|
|
mavenCentral()
|
2017-01-03 18:32:45 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-27 14:59:54 +02:00
|
|
|
tasks.register('clean', Delete) {
|
2024-08-14 20:00:09 +02:00
|
|
|
delete rootProject.layout.buildDirectory.get().asFile
|
2017-01-03 18:32:45 +01:00
|
|
|
}
|