Files
MrbWebLibre/app/android/build.gradle
T
2025-08-24 07:51:56 +02:00

31 lines
594 B
Groovy

//Required by background_fetch build
ext {
compileSdkVersion = 36
targetSdkVersion = 36
}
buildscript {
ext.kotlin_version = '2.1.20'
}
allprojects {
repositories {
google()
mavenCentral()
//Required by background_fetch build
maven { url "${project(':background_fetch').projectDir}/libs" }
}
}
rootProject.buildDir = "../build"
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(":app")
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
}