HomeServer/frontend/android/build.gradle
RenovateBot e4f7a7fa3b
Some checks failed
Home Server Merge / Serial Reader (pull_request) Has been cancelled
Update dependency org.jetbrains.kotlin:kotlin-gradle-plugin to v2.1.10
2025-01-27 09:02:54 +00:00

31 lines
599 B
Groovy

buildscript {
ext.kotlin_version = '2.1.10'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.5.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
}