繁体   English   中英

Gradle/Flutter 中的构建错误:“无法解决配置的所有工件”?

[英]Build error in Gradle/Flutter: 'Could not resolve all artifacts for configuration'?

尝试构建应用程序时,编译器会吐出:


FAILURE: Build failed with an exception.

* What went wrong:
A problem occurred configuring project ':app_settings'.
> Could not resolve all artifacts for configuration ':app_settings:classpath'.
   > Could not find org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.70.
     Searched in the following locations:
       - https://dl.google.com/dl/android/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.3.70/kotlin-gradle-plugin-1.3.70.pom
     If the artifact you are trying to retrieve can be found in the repository but without metadata in 'Maven POM' format, you need to adjust the 'metadataSources { ... }' of the repository declaration.
     Required by:
         project :app_settings
   > Could not find org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.61.
     Searched in the following locations:
       - https://dl.google.com/dl/android/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.3.61/kotlin-stdlib-jdk8-1.3.61.pom
     If the artifact you are trying to retrieve can be found in the repository but without metadata in 'Maven POM' format, you need to adjust the 'metadataSources { ... }' of the repository declaration.
     Required by:
         project :app_settings > com.android.tools.build:gradle:3.6.1
         project :app_settings > com.android.tools.build:gradle:3.6.1 > com.android.tools.build:builder:3.6.1
         project :app_settings > com.android.tools.build:gradle:3.6.1 > com.android.tools.lint:lint-gradle-api:26.6.1
         project :app_settings > com.android.tools.build:gradle:3.6.1 > com.android.tools.build:gradle-api:3.6.1
         project :app_settings > com.android.tools.build:gradle:3.6.1 > androidx.databinding:databinding-compiler-common:3.6.1
         project :app_settings > com.android.tools.build:gradle:3.6.1 > com.android.tools.build:builder:3.6.1 > com.android.tools:sdk-common:26.6.1
         project :app_settings > com.android.tools.build:gradle:3.6.1 > com.android.tools.build:builder:3.6.1 > com.android.tools:common:26.6.1
         project :app_settings > com.android.tools.build:gradle:3.6.1 > com.android.tools.build:builder:3.6.1 > com.android.tools.build:manifest-merger:26.6.1
         project :app_settings > com.android.tools.build:gradle:3.6.1 > com.android.tools.build:builder:3.6.1 > com.android.tools.analytics-library:tracker:26.6.1
         project :app_settings > com.android.tools.build:gradle:3.6.1 > com.android.tools.build:builder:3.6.1 > com.android.tools:sdklib:26.6.1 > com.android.tools:repository:26.6.1
         project :app_settings > com.android.tools.build:gradle:3.6.1 > com.android.tools.build:builder:3.6.1 > com.android.tools:sdk-common:26.6.1 > com.android.tools.analytics-library:shared:26.6.1
   > Could not find org.ow2.asm:asm:7.0.
     Searched in the following locations:
       - https://dl.google.com/dl/android/maven2/org/ow2/asm/asm/7.0/asm-7.0.pom
     If the artifact you are trying to retrieve can be found in the repository but without metadata in 'Maven POM' format, you need to adjust the 'metadataSources { ... }' of the repository declaration.
     Required by:
         project :app_settings > com.android.tools.build:gradle:3.6.1
         project :app_settings > com.android.tools.build:gradle:3.6.1 > com.android.tools.build:builder:3.6.1
   > Could not find org.ow2.asm:asm-analysis:7.0.
     Searched in the following locations:
       - https://dl.google.com/dl/android/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.pom
     If the artifact you are trying to retrieve can be found in the repository but without metadata in 'Maven POM' format, you need to adjust the 'metadataSources { ... }' of the repository declaration.
     Required by:
         project :app_settings > com.android.tools.build:gradle:3.6.1
   > Could not find org.ow2.asm:asm-commons:7.0.
     Searched in the following locations:
       - https://dl.google.com/dl/android/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.pom
     If the artifact you are trying to retrieve can be found in the repository but without metadata in 'Maven POM' format, you need to adjust the 'metadataSources { ... }' of the repository declaration.
     Required by:
         project :app_settings > com.android.tools.build:gradle:3.6.1
         project :app_settings > com.android.tools.build:gradle:3.6.1 > com.android.tools.build:builder:3.6.1
   > Could not find org.ow2.asm:asm-util:7.0.
     Searched in the following locations:
       - https://dl.google.com/dl/android/maven2/org/ow2/asm/asm-util/7.0/asm-util-7.0.pom
     If the artifact you are trying to retrieve can be found in the repository but without metadata in 'Maven POM' format, you need to adjust the 'metadataSources { ... }' of the repository declaration.
     Required by:
         project :app_settings >....

完整输出: https : //pastebin.com/Vj67AWAH

我试过删除 app_settins 插件,但它在另一个插件上失败了,所以我认为这是一个普遍问题,而不是特定于插件的问题。

我尝试重新安装不同版本的 AndroidStudio,就像 jdk 和 flutter sdk

我就是无法理解它

帮助!


编辑

这是 build.gradle:


buildscript {
    ext.kotlin_version = '1.4.31'
    repositories {
        google()
        jcenter()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:4.1.2'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

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

task clean(type: Delete) {
    delete rootProject.buildDir
}


这可能是侥幸,但在网上搜索我偶然发现了这个

有点遵循它,我删除了user_folder>/AppData/Local/Pub/Cache/hosted/pub.dartlang.org/所有缓存插件,然后在项目中运行 flutter pub get 。

现在它起作用了。

如果有人知道为什么/如何工作,请解释一下,谢谢!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM