gpt4 book ai didi

java - 将插件添加到 gradle 后不支持major.minor版本

转载 作者:行者123 更新时间:2023-12-01 07:03:20 26 4
gpt4 key购买 nike

当我为插件 Permissions Dispatcher( https://github.com/hotchemi/PermissionsDispatcher ) 添加依赖项和类路径时,应用程序停止运行,并给出此错误消息

Error:Execution failed for task ':app:compileDebugJavaWithJavac'.
> java.lang.UnsupportedClassVersionError: permissions/dispatcher/RuntimePermissions : Unsupported major.minor version 52.0

项目 Gradle

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'

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

allprojects {
repositories {
jcenter()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

buildscript {
dependencies {
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
}
}

模块 Gradle

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
applicationId "me.paxana.alerta"
minSdkVersion 21
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.parse.bolts:bolts-android:1.3.0'
compile 'com.parse:parse-android:1.12.0'
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.android.support:support-v4:23.1.1'
compile 'com.android.support:support-annotations:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.nanohttpd:nanohttpd-webserver:2.1.1'
compile ('com.mapbox.mapboxsdk:mapbox-android-sdk:3.0.0@aar'){
transitive=true}
}

apply plugin: 'android-apt'

dependencies {
compile 'com.github.hotchemi:permissionsdispatcher:2.0.4'
apt 'com.github.hotchemi:permissionsdispatcher-processor:2.0.4'
}

最佳答案

该错误消息意味着您正在执行的代码是使用比执行 JVM 更高版本的 Java 编译的。我认为版本 52 对应于 Java 1.8。因此该插件可能是使用 1.8 版本编译的,并且您的 Gradle 环境正在使用 1.7 或更早版本的 JVM 执行该插件。

要解决此问题,请尝试以下操作:

  1. 在您的系统上安装 Java 1.8 JDK。 (JRE 可能就足够了)
  2. 将 JAVA_HOME 环境变量设置为指向此 1.8 JDK。然后 Gradle 将使用这个 JDK,一切都会好起来的。

关于java - 将插件添加到 gradle 后不支持major.minor版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35051537/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com