| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- allprojects {
- repositories {
- google()
- mavenCentral()
- }
- }
- rootProject.buildDir = "../build"
- subprojects {
- /**************************
- * https://github.com/flutter/flutter/issues/153281
- * 受影响插件:image_gallery_saver
- * **************/
- //==========================================================================================
- afterEvaluate { project ->
- if (project.extensions.findByName("android") != null) {
- Integer pluginCompileSdk = project.android.compileSdk
- if (pluginCompileSdk != null && pluginCompileSdk < 31) {
- project.logger.error(
- "Warning: Overriding compileSdk version in Flutter plugin: "
- + project.name
- + " from "
- + pluginCompileSdk
- + " to 31 (to work around https://issuetracker.google.com/issues/199180389)."
- + "\nIf there is not a new version of " + project.name + ", consider filing an issue against "
- + project.name
- + " to increase their compileSdk to the latest (otherwise try updating to the latest version)."
- )
- project.android {
- compileSdk flutter.compileSdkVersion
- }
- }
- if (project.hasProperty('android')) {
- project.android {
- if (namespace == null) {
- namespace project.group
- }
- }
- }
- }
- }
- //==========================================================================================
- project.buildDir = "${rootProject.buildDir}/${project.name}"
- }
- subprojects {
- project.evaluationDependsOn(":app")
- }
- tasks.register("clean", Delete) {
- delete rootProject.buildDir
- }
|