![auto-submit[bot]](/assets/img/avatar_default.png)
Reverts: flutter/flutter#154061 Initiated by: QuncCccccc Reason for reverting: might be the reason that cause Framework tree to red Original PR Author: bartekpacia Reviewed By: {gmackall, reidbaker} This change reverts the following previous change: This PR resolves #151166
19 lines
322 B
Cheetah
19 lines
322 B
Cheetah
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.buildDir = "../build"
|
|
subprojects {
|
|
project.buildDir = "${rootProject.buildDir}/${project.name}"
|
|
}
|
|
subprojects {
|
|
project.evaluationDependsOn(":app")
|
|
}
|
|
|
|
tasks.register("clean", Delete) {
|
|
delete rootProject.buildDir
|
|
}
|