55 lines
1.4 KiB
Text
55 lines
1.4 KiB
Text
buildscript {
|
|
extra["aves.useCrashlytics"] = gradle.startParameter.taskNames.any { it.contains("play", ignoreCase = true) }
|
|
|
|
println("Tasks=${gradle.startParameter.taskNames}")
|
|
println("Extra=\n${extra.properties.entries.map { kv -> " ${kv.key}=${kv.value}" }.sorted().joinToString("\n")}")
|
|
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath(libs.gradle)
|
|
|
|
if (rootProject.extra["aves.useCrashlytics"] as Boolean) {
|
|
// GMS & Firebase Crashlytics (used by some flavors only)
|
|
classpath(libs.google.gms)
|
|
classpath(libs.google.firebase.crashlytics)
|
|
}
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
alias(libs.plugins.reproducible.builds)
|
|
}
|
|
|
|
allprojects {
|
|
apply(plugin = "org.gradlex.reproducible-builds")
|
|
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
// gradle.projectsEvaluated {
|
|
// tasks.withType(JavaCompile) {
|
|
// options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
|
|
// }
|
|
// }
|
|
}
|
|
|
|
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)
|
|
}
|