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