欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Error:Execution failed for task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug'.

程序员文章站 2022-06-05 14:20:05
...

问题说明:

在执行make project或者rebuild project时报如下问题:

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

解决方法:

1.执行

build-》clean project

build-》rebuild project

执行这两部操作有可能解决,还不行

2.修改配置文件

android {
    defaultConfig {
        ...
        minSdkVersion 15 
        targetSdkVersion 26
        multiDexEnabled true
    }
    ...
}

dependencies {
  compile 'com.android.support:multidex:1.0.1'
}

参考:https://*.com/questions/46267621/unable-to-merge-dex