2025-05-04 17:47:47 -07:00
|
|
|
allprojects {
|
2025-05-09 22:15:27 -07:00
|
|
|
ext {
|
2026-02-05 21:26:13 -08:00
|
|
|
set("appCompatVersion", "1.7.1")
|
2025-05-09 22:15:27 -07:00
|
|
|
set("playServicesLocationVersion", "21.3.0")
|
|
|
|
|
}
|
2026-02-28 07:35:29 -08:00
|
|
|
configurations.configureEach {
|
|
|
|
|
resolutionStrategy.force("com.transistorsoft:tslocationmanager:4.0.15")
|
|
|
|
|
}
|
2025-05-04 17:47:47 -07:00
|
|
|
repositories {
|
|
|
|
|
google()
|
|
|
|
|
mavenCentral()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
val newBuildDir: Directory = rootProject.layout.buildDirectory.dir("../../build").get()
|
|
|
|
|
rootProject.layout.buildDirectory.value(newBuildDir)
|
|
|
|
|
|
|
|
|
|
subprojects {
|
|
|
|
|
val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name)
|
|
|
|
|
project.layout.buildDirectory.value(newSubprojectBuildDir)
|
|
|
|
|
}
|
|
|
|
|
subprojects {
|
|
|
|
|
project.evaluationDependsOn(":app")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tasks.register<Delete>("clean") {
|
|
|
|
|
delete(rootProject.layout.buildDirectory)
|
|
|
|
|
}
|