6

我将我的 android studio 从 Android studio fox 更新为 Android studio Bumblebee 2021.1.1 但我的项目都不能在Android studio 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
}
4

4 回答 4

1

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

//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
}
于 2022-02-07T15:00:22.517 回答
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

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

于 2022-02-13T00:38:42.107 回答
1

请检查您的 JDK 版本。至少你的 JDK 版本必须是 11 然后重启 Android Studio 查看此链接了解更多信息: https ://developer.android.com/studio/releases/gradle-plugin#jdk-11

于 2022-02-23T21:05:35.413 回答
0

在 build.gradle(项目模块)中添加 buildscript

  buildscript {

    repositories {
        google()
        mavenCentral()
    }
    dependencies {

        
        classpath 'your dependecy path'

    }
}

plugins {
    id 'com.android.application' version '7.1.1' apply false
    id 'com.android.library' version '7.1.1' apply false
    id 'org.jetbrains.kotlin.android' version '1.5.30' apply false
}


task clean(type: Delete) {
    delete rootProject.buildDir
}
于 2022-02-10T13:09:43.953 回答