- Régénération android/ (MainActivity, Gradle, manifestes, icônes) - gradle-wrapper.jar versionné (wrapper requis hors machine locale) - Ignore local.properties à la racine du dépôt - pubspec.lock / .metadata alignés Flutter 3.19 (résolution pub get CI) Made-with: Cursor
19 lines
322 B
Groovy
19 lines
322 B
Groovy
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
|
|
}
|