gpt4 book ai didi

android - 依赖问题 : DexArchiveMergerException

转载 作者:行者123 更新时间:2023-11-29 01:01:35 26 4
gpt4 key购买 nike

我创建了一个包含以下依赖项的新项目:

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support:design:26.1.0'

implementation 'com.github.bumptech.glide:glide:4.7.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.7.1'
implementation 'com.squareup.okhttp:okhttp:2.6.0'
implementation 'com.google.code.gson:gson:2.8.2'
}

并且在运行该应用程序时,出现以下错误:

Error:Execution failed for task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug'.
> com.android.builder.dexing.DexArchiveMergerException: Unable to merge dex

可能是什么问题?

最佳答案

Jaimin,希望你已经在你的应用程序 gradle 文件中启用了 multidex,使用..

multiDexEnabled true

如果还是没有解决,你添加下面的代码:

configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def requested = details.requested
if (requested.group == 'com.android.support') {
if (!requested.name.startsWith("multidex")) {
details.useVersion '26.+'
}
}
}
}

关于android - 依赖问题 : DexArchiveMergerException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50735427/

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