无法合并dex错误

时间:2018-01-10 11:54:55

标签: android android-studio android-gradle

这是我的app build.gradle文件 enter image description here

它在appcompat dependecy文件中显示错误。我尝试了清理项目和构建项目以及很多方法但仍然出现错误。这是我运行项目时的错误。

**错误:任务执行失败':app:transformDexArchiveWithExternalLibsDexMergerForDebug'。

  

java.lang.RuntimeException:java.lang.RuntimeException:com.android.builder.dexing.DexArchiveMergerException:无法合并dex **

2 个答案:

答案 0 :(得分:1)

这样做 - :

implementation 'com.android.support:multidex:1.0.0'

这在你的build.gradle中: -

multiDexEnabled true

在默认配置下

答案 1 :(得分:1)

将此添加到您的app.gradle文件

 android {
          defaultConfig {
            multiDexEnabled true
            }
       }

也添加依赖

implementation 'com.android.support:multidex:1.0.0'

它将解决您的问题