trcr/android/build.gradle.kts

29 lines
778 B
Text
Raw Normal View History

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")
}
2025-05-04 17:47:47 -07:00
repositories {
2026-02-12 21:36:57 -08:00
// background_geolocation
// [DEV] Sonatype SNAPSHOT url
maven(url = "https://central.sonatype.com/repository/maven-snapshots/")
2025-05-04 17:47:47 -07:00
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)
}