android 解决Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8.

博客讲述了在运行Android项目时遇到的错误:Gradle插件需要Java 11但系统使用的是Java 1.8。解决方案是降低Gradle插件版本,例如从7.0.4降至4.1.1,以适应Java 1.8环境,修改后项目成功运行。
摘要由CSDN通过智能技术生成

An exception occurred applying plugin request [id: 'com.android.application']

> 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`.

运行项目报这么一个错,意思说JDK版本的问题,说gradle插件需要JDK11,但是我指定了1.8,目前用11还有点过早,怎么解决呢?

在整个工程的build.gradle文件中gradle插件的版本太高了,如图:

dependencies {
    classpath "com.android.tools.build:gradle:7.0.4"

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}

降低一些版本就可以了,如图:

dependencies {
    classpath "com.android.tools.build:gradle:4.1.1"

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}

修改后再运行项目就OK了,好了,又可以愉快玩耍了。

  • 1
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 5
    评论
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值