1

构建应用程序时出现以下错误。任何帮助将不胜感激。

根目录:build.gradle

buildscript {
    ext.kotlin_version = '1.3.50'

    repositories {
        google()
        jcenter()

    }
    dependencies {
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    }
}

allprojects {
    repositories {
        google()
        jcenter()

    }
}

设置.gradle

include ':app'

应用程序:build.gradle

apply plugin: 'java'

compileJava {
    options.compilerArgs << '-parameters'
    options.fork = true
    options.incremental = true
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])

    implementation 'com.squareup:javapoet:1.10.0'
    implementation ("org.checkerframework:checker:2.1.10")
    testImplementation 'org.mockito:mockito-core:3.2.0'
}

FAILURE:构建失败并出现异常。*在哪里:设置文件'/Users/Documents/android/MyApplication5/settings.gradle' *出了什么问题:无法编译设置文件'/Users/anand/Documents/android/MyApplication5/settings.gradle'。>启动失败:语义分析期间的一般错误:不支持的主要版本 57 java.lang.IllegalArgumentException:不支持的主要版本 57

1个错误

4

1 回答 1

0

确保 pom.xml 文件中的目标版本和源版本相同。编辑:Java 9+ 没有单独的 JRE,因此请确保您的 JRE 路径指向您的 JDK。

于 2020-08-30T22:44:18.243 回答