```Here's the other build.gradle file: ...
# community-support
a
Copy code
Here's the other build.gradle file:                                                      repositories {
        google()
        mavenCentral()
    }
}

rootProject.buildDir = '../build'
subprojects {
    project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
    project.evaluationDependsOn(':app')
}

tasks.register("clean", Delete) {
    delete rootProject.buildDir
}
c
could you please restructure your request using a snippet? you might also want to use a gists... this is going to be hard to respond to and it's also hard to figure out where it starts
I suspect you can edit your og post and then add a snippet using the + (in the lower left) and paste all your code into that.
I guess you can't edit and add, but you can put them in the comments
also 3 backtiks like markdown make a code block, snippet is in many ways better for long code though, because it collapses and supports language highlighting