Upgrade to latest Flutter version (fix Gradle and other errors)

This commit is contained in:
Imran Remtulla
2025-01-11 22:35:40 +03:00
parent c84f51b6ce
commit 9954b68332
13 changed files with 138 additions and 114 deletions

View File

@@ -9,12 +9,12 @@ allprojects {
}
}
rootProject.buildDir = '../build'
rootProject.buildDir = "../build"
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
project.evaluationDependsOn(":app")
}
tasks.register("clean", Delete) {