31 lines
641 B
Groovy
Raw Permalink Normal View History

2022-07-03 20:52:22 +03:00
buildscript {
2024-04-27 19:18:53 +03:00
ext.kotlin_version = '1.9.22'
2022-07-03 20:52:22 +03:00
repositories {
google()
mavenCentral()
}
dependencies {
2024-04-27 19:18:53 +03:00
classpath 'com.android.tools.build:gradle:8.2.2'
2022-07-03 20:52:22 +03:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
2024-10-17 14:30:32 +03:00
maven { url 'https://developer.huawei.com/repo/'}
2022-07-03 20:52:22 +03:00
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
project.evaluationDependsOn(':app')
}
2024-10-17 14:30:32 +03:00
tasks.register("clean", Delete) {
2022-07-03 20:52:22 +03:00
delete rootProject.buildDir
}