我下载了最新的Android Studio,我想运行Android Jetpack Compose 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`.

我已经下载了Java 11,并在gradle.properties中添加了Java 11。

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

JAVA_HOME显示Java 11,但当我运行时,它不工作 /图书馆/ Java / Home / JavaVirtualMachines / jdk-11.0.10.jdk /内容

我该怎么办?

我的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-wrapper.properties

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"
}

当前回答

我得出的结论是,Gradle调用安装在系统上的Java版本,而不管Android Studio设置。

在macOS下,使用以下命令查看系统中已安装的Java版本列表:

/usr/libexec/java_home -V

如果其中没有Java 11或更高版本,您将得到类似问题作者的错误。

解决方案是安装Java 11或更高版本。

第二个解决方案是在~/Library/Java/JavaVirtualMachines/文件夹中创建一个符号链接到Android Studio中嵌入的JRE,使用命令:

ln -s "/Applications/Android Studio.app/Contents/jre" "~/Library/Java/JavaVirtualMachines/Android Studio Default JRE"

另外,你可以在~/.zshenv中添加这一行:

export JAVA_HOME=/usr/libexec/java_home

如果需要,您可以获取不同Java版本的安装路径:

/usr/libexec/java_home -v 11

or

/usr/libexec/java_home -v 1.8

其他回答

当我在北极狐构建的终端中开始gradlew ktlintFormat时,我得到了这个错误。

I opened Project Structure (menu File → Project Structure) and selected Java 11, but it didn't help even after a restart of Android Studio. Then I changed the Java path in Settings (see the accepted answer), but it didn't help. You should set it. I tried to change Windows system variables and changed JAVA_HOME. (A short way: run cmd with administrative rights and write: setx /M JAVA_HOME "C:\Program Files\Java\jdk-11.0.11", and then restart Android Studio) Press Win+X, press "System", and enter "va". I pressed Edit button and "Browse Directory...", and then selected JRE (or JDK) folder (without bin) of Java 11. Then OK, and OK (as always). I opened cmd (command line in Windows) and typed: %JAVA_HOME%. It wrote me this error: 'C:\Program' is not recognized as an internal or external command, operable program or batch file. Looking at Setting the JAVA_HOME Variable in Windows, I found that we should replace Program Files with Progra~1 (yes, this DOS trick still works). So, replace JAVA_HOME again like in the picture below (C:\Progra~1\Android\Androi~1\jre). Restart Android Studio or reset the computer.

这里的所有解决方案对Java 11都有帮助。但是如果你不想升级到Java 11,那么你应该把Android Gradle插件(ADP)降级到4。X如下图所示:

对我来说,这就像确保我使用的是位于[Android Studio安装路径]/jre中的Gradle JDK一样简单。

试一试。这也可能对你有用。

我的问题是我使用的是Arctic Fox(4.2)之前的Android Studio版本。而且似乎只有Arctic Fox支持JDK 11。

在Windows中,我在没有安装更新OpenJDK 11的情况下,从CMD将React Native v0.67升级到0.68时得到了这个错误。

首先我安装:

choco source add -n chocolatey -s 'https://chocolatey.org/api/v2/'

然后我运行这个:

choco install -y nodejs-lts openjdk11 // Without nodejs-lts I have already installed Node.js