gpt4 book ai didi

java - Android应用:transformClassesWithDexForDebug

转载 作者:行者123 更新时间:2023-12-03 06:09:11 31 4
gpt4 key购买 nike

经过多次尝试使用其他网络解决方案后,我感到绝望。

如果有人可以帮助我解决这个问题,我会更开心!

错误:任务':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'' finished with non-zero exit value 3



在尝试向项目添加新的依赖项之前,我的项目运行良好
org.apache.pdfbox:pdfbox:1.5.0,
com.github.PhilJay:MPAndroidChart:v2.2.3或'com.google.guava:guava:16.0.1'-但没有成功- 总是出现相同的错误。

我还尝试以不同的方式添加每一个:当然是作为Module,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 {
编译版本23
buildToolsVersion“23.0.2”
dataBinding {
启用=真
}
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

那么可能是什么问题呢?非常感谢!

最佳答案

在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'
}

关于java - Android应用:transformClassesWithDexForDebug,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36158701/

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