DexArchiveMergerException: Unable to merge dex

前端 未结 1 1570
后悔当初
后悔当初 2021-01-07 00:33

Just after updating Android studio 3.0 yesterday from 2.3.3 version, I am facing issue related to DexMergerException.

Someone else also posted question-related t

相关标签:
1条回答
  • 2021-01-07 01:17

    After looking for a lot of options around the internet. I figured out to include a configuration tag inside build.gradle to exclude HttpCore :

    configurations {    
        all*.exclude group: 'org.apache.httpcomponents', module:'httpclient'
    }
    

    Hope it will help others.

    Thanks.

    0 讨论(0)
提交回复
热议问题