• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

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

武飞扬头像
Alex老夫子
帮助3

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插件的版本太高了,如图:

  1.  
    dependencies {
  2.  
    classpath "com.android.tools.build:gradle:7.0.4"
  3.  
     
  4.  
    // NOTE: Do not place your application dependencies here; they belong
  5.  
    // in the individual module build.gradle files
  6.  
    }

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

  1.  
    dependencies {
  2.  
    classpath "com.android.tools.build:gradle:4.1.1"
  3.  
     
  4.  
    // NOTE: Do not place your application dependencies here; they belong
  5.  
    // in the individual module build.gradle files
  6.  
    }

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

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /boutique/detail/tanhfigaek
系列文章
更多 icon
同类精品
更多 icon
继续加载