【发布时间】:2016-10-10 19:52:21
【问题描述】:
当我尝试在 android 中启动我的应用程序时。 我收到以下错误
Error:Error converting bytecode to dex:
Cause: Dex cannot parse version 52 byte code.
This is caused by library dependencies that have been compiled using Java 8 or above.
If you are using the 'java' gradle plugin in a library submodule add
targetCompatibility = '1.7'
sourceCompatibility = '1.7'
to that submodule's build.gradle file.
在 build.gradle 我有以下内容
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "jejapps.conexionremota"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.apache.http.client:4.1.2'
targetCompatibility = 1.7
sourceCompatibility = 1.7
}
JAVA_HOME,我有java文件夹的地址(C:\Program Files (x86)\Java\jdk1.7.0_55)
非常感谢大家
【问题讨论】:
-
"..is 由 library dependencies .." - 检查你的 libs 目录和 junit/那个 jbundle 的东西。其中之一是为 Java 8 编译的,不是您的应用程序或您的(主模块)gradle 文件导致此问题。
-
我应该在哪里检查它是否为 java 8 编译? @zapl
-
它要么在某处说明,要么很复杂:stackoverflow.com/questions/3313532/…
-
jbundle
Build-Jdk: 1.6.0_29junitBuild-Jdk: 1.6.0_45哪个版本的java? @zapl