我知道这是一个错误,以前在一个问题中被问过,但我找不到任何适合我的答案。
这是我的gradle文件
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.0"
defaultConfig {
applicationId "com.example.hvfhirapp"
minSdkVersion 16
targetSdkVersion 21
multiDexEnabled = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
configurations{
compile.exclude module: 'commons-codec'
compile.exclude module: 'javax.json'
}
dependencies {
compile project(':androidsdksimplexml')
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'ca.uhn.hapi.fhir:hapi-fhir-base:1.1'
compile 'ca.uhn.hapi.fhir:hapi-fhir-structures-dstu2:1.1'
compile 'com.android.support:multidex:1.0.1'
}
android {
packagingOptions {
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
}
}
正如您所看到的,我已经输入了multiDexEnabled = true,并且我还在我的清单应用程序中添加了MultiDex +行的依赖性。
gradle控制台中堆栈跟踪的确切错误是:
* What went wrong:
Execution failed for task ':hVFhirApp:dexDebug'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Java\jdk1.7.0_79\bin\java.exe'' finished with non-zero exit value 1
另外我想补充的是,当我删除依赖项中的排除时,显示的错误是
* What went wrong:
Execution failed for task ':hVFhirApp:packageAllDebugClassesForMultiDex'.
> java.util.zip.ZipException: duplicate entry: org/apache/commons/codec/binary/Base64.class
这就是我排除它们的原因
任何帮助都会非常值得赞赏。 提前谢谢
答案 0 :(得分:0)
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
将此添加到您的gradle并清理整个项目并构建。如果它不起作用,则从您的计算机上卸载JAVA并重新安装