当前位置: 首页 > 知识库问答 >
问题:

Android Studio错误“Android Gradle插件需要运行Java 11。您当前正在使用Java 1.8”

岳杜吟
2023-03-14

我下载了最新的Android Studio,我想运行Android Jetpack Comash Project,但当我运行它时,我得到了错误:

> Failed to apply plugin 'com.android.internal.application'.
> Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8.
You can try some of the following options:
- changing the IDE settings.
- changing the JAVA_HOME environment variable.
- changing `org.gradle.java.home` in `gradle.properties`.

我已经下载了Java11,并在gradle中添加了Java11。财产。

org.gradle.java.home=/Library/Java/JavaVirtualMachines/jdk-11.0.10.jdk/Contents/Home

JAVA_主页显示了JAVA 11,但当我运行时,它不起作用-/Library/JAVA/JavaVirtualMachines/jdk-11.0.10。jdk/Contents/Home

我该怎么办?

我的Android Studio版本

我的Java版本

java 11.0.10 2021-01-19 LTS
Java(TM) SE Runtime Environment 18.9 (build 11.0.10+8-LTS-162)
Java HotSpot(TM) 64-Bit Server VM 18.9 (build 11.0.10+8-LTS-162, mixed mode)

我的gradle包装纸。属性

distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.2-bin.zip

建筑gradle类路径

classpath "com.android.tools.build:gradle:7.0.0-alpha13"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.31"

文件build.gradle

plugins {
    id 'com.android.application'
    id 'kotlin-android'
}

android {
    compileSdk 30

    defaultConfig {
        applicationId "com.example.testandroid3"
        minSdk 21
        targetSdk 30
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        vectorDrawables {
            useSupportLibrary true
        }
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_11
        targetCompatibility JavaVersion.VERSION_11
    }
    kotlinOptions {
        jvmTarget = "11"
        useIR = true
    }
    buildFeatures {
        compose true
    }
    composeOptions {
        kotlinCompilerExtensionVersion compose_version
        kotlinCompilerVersion '1.4.31'
    }
}

java {
    toolchain {
        languageVersion.set(JavaLanguageVersion.of(11))
    }
}

dependencies {

    implementation 'androidx.core:core-ktx:1.3.2'
    implementation 'androidx.appcompat:appcompat:1.2.0'
    implementation 'com.google.android.material:material:1.2.1'
    implementation "androidx.compose.ui:ui:$compose_version"
    implementation "androidx.compose.material:material:$compose_version"
    implementation "androidx.compose.ui:ui-tooling:$compose_version"
    implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.0'
    implementation 'androidx.activity:activity-compose:1.3.0-alpha02'
    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.1.2'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
    androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_version"
}

共有3个答案

汤英豪
2023-03-14

如果你在Windows 10上使用Android Studio(Arctic Fox 2020.3.1)。

以下是修复构建失败错误的方法:

Android Gradle插件需要Java 11才能运行。您当前正在使用Java 1.8

>

点击Gradle设置链接

从Gradle JDK下拉列表中选择正确的Java JDK

注意:如果找不到正确的Java JDK,那么首先需要下载并安装它。。。

穆远
2023-03-14

对于Android Studio Arctic Fox(4.2),在Windows 10 Pro PC上安装2020.3.1补丁2:

第一步

步骤二

郝冥夜
2023-03-14

确保Gradle使用的是正确的JDK。试着运行/gradlew——项目目录中的版本。输出应该是这样的:

Gradle 7.0-rc-2
------------------------------------------------------------

Build time:   2021-04-01 21:26:39 UTC
Revision:     912a3368b654b71250dfc925a20d620393

Kotlin:       1.4.31
Groovy:       3.0.7
Ant:          Apache Ant(TM) version 1.10.9 compiled on September 27 2020
JVM:          11.0.10 (Ubuntu 11.0.10+9-Ubuntu-0ubuntu1.20.10)
OS:           Linux 5.11.4-051104-generic amd64

如果JVM指向1.8版本,那么您应该在设置中更改它。您可以在首选项→构建、执行、部署→构建工具→Gradle→*Gradle JDK中找到它。

 类似资料: