This commit is contained in:
2025-02-21 08:20:41 +01:00
parent 1be6b0681f
commit ff9636b75b
330 changed files with 0 additions and 36926 deletions
-35
View File
@@ -1,35 +0,0 @@
allprojects {
repositories {
google()
mavenCentral()
configurations.all {
resolutionStrategy {
force "com.google.android.gms:play-services-location:21.0.1"
}
}
}
}
rootProject.buildDir = '../build'
subprojects {
afterEvaluate { project ->
if (project.hasProperty('android')) {
project.android {
if (namespace == null) {
namespace project.group
}
}
}
}
}
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
}