Bumblebee Android studio Plugin [id: 'com.android.application', version: '7.1.0', apply: false] 在以下任何来源中都找不到:

我将我的Android工作室从Android工作室fox更新为Android工作室Bumblebee 2021.1.1,但我的项目都不能在Android工作室Bumblebee 2021.1.1中运行。我最终得到了这个美丽的错误。

打开以查看图像

这是我的 gradle 文件

plugins {
    id 'com.android.application' version '7.1.0' apply false
    id 'com.android.library' version '7.1.0' apply false
}

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

答案 1

当我向项目添加新模块时,AS Bumblebee会发生这种情况。它将这两行添加到插件块中的项目级 build.gradle 中:

    id 'com.android.library' version '7.1.1' apply false
    id 'org.jetbrains.kotlin.android' version '1.6.10' apply false

我删除了它们以修复错误。


答案 2

我有同样的问题。我是这样做的:

//Comment the following code from settings.gradle:
/*pluginManagement {
    repositories {
        gradlePluginPortal()
        google()
        mavenCentral()
    }
}*/
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
    }
}

修改项目根目录中 build.gradle 中的 buildScript 节点:

buildscript {
    ext {
        kotlin_version = '1.6.10'
        compose_version = '1.0.5'
    }
    repositories {
        google()
        mavenCentral()
        gradlePluginPortal()
    }
    dependencies {
        classpath "com.android.tools.build:gradle:7.1.1"
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    }
}

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

推荐