android - Gradle/Flutter 中的构建错误 : 'Could not resolve all artifacts for configuration' ?

标签 android flutter gradle classpath

尝试构建应用程序时,编译器会输出以下内容:


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
}


最佳答案

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

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

现在可以了。

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

关于android - Gradle/Flutter 中的构建错误 : 'Could not resolve all artifacts for configuration' ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68223812/

相关文章:

flutter - 在小部件之间传递变量 flutter

android - 从 Android 上的聚类 Google Maps Android API 实用程序库中排除标记?

java - 如何将渐变设置为TextView的文本颜色?

java - 如何获取 hideSoftInputFromInputMethod(token, flags) 所需的 token ?

android - 浏览器中的后退按钮

dart - ListWheelScrollView 子项无法识别 onTap()

flutter - 无法更改 flutter 中的 Material 图标重量

android - 应用在启动时崩溃

java - 使用gradle获取sh的输出

gradle - 无法发布到 sonarqube