经过多次尝试使用其他网络解决方案后,我感到绝望。
如果有人可以帮我解决这个问题,我会更开心!:
错误:任务':app:transformClassesWithDexForDebug'执行失败。
com.android.build.api.transform.TransformException:com.android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException:Process' command' C:\ Program Files \ Java \ jdk1.8.0_65 \ bin \ java.exe''完成非零退出值3
我的项目运行完美,直到我尝试向项目中添加新的依赖项 org.apache.pdfbox:PDFBOX:1.5.0, com.github.PhilJay:MPAndroidChart:v2.2.3或' com.google.guava:guava:16.0.1' - 但没有成功 - 总是得到同样的错误。
每一个我也尝试以不同的方式添加:当然,模块,Jar或Gradle依赖 - 始终得到相同的错误。
我的Gradle版本:' com.android.tools.build:gradle:1.5.0'
Android Studio:1.5.1
SDK:23
这是我的build.gradle
apply plugin: 'com.android.application'
android { compileSdkVersion 23 buildToolsVersion" 23.0.2" dataBinding { enabled = true }
defaultConfig {
applicationId "com.alfred.alfredapplication"
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName "1.0"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dexOptions {
incremental true
}
}
依赖{ 编译fileTree(包括:[' * .jar'],dir:' libs') testCompile' junit:junit:4.12'
compile 'com.android.support:cardview-v7:23.2.0'
compile 'com.android.support:recyclerview-v7:23.2.0'
compile 'com.android.support:design:23.2.0'
compile 'org.jsoup:jsoup:1.8.3'
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.google.android.gms:play-services-identity:7.8.0'
compile('com.google.api-client:google-api-client-android:1.20.0') {
exclude group: 'org.apache.httpcomponents'
}
compile('com.google.apis:google-api-services-gmail:v1-rev40-1.21.0') {
exclude group: 'org.apache.httpcomponents'
}
/*compile files('libs/pdfbox-2.0.0.jar')*/
compile 'com.android.support:multidex:1.0.1'
我的AndroidManifest.xml包括:
android:name="android.support.multidex.MultiDexApplication
那么问题可能是什么?非常感谢!
答案 0 :(得分:0)
在gradle文件中的android {}下添加这些行。
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
exclude 'LICENSE.txt'
}