Unable to merge dex

前端 未结 30 2761
深忆病人
深忆病人 2020-11-21 22:14

I have Android Studio Beta. I created a new project with compile my old modules but when I tried launching the app it did not launch with the message:

Error:         


        
30条回答
  •  误落风尘
    2020-11-21 22:46

    I find out the reason of this problem for my project. I was added one dependency twice in build.gradle. One time by adding dependency and one time again by adding jar dependency:

    compile 'org.achartengine:achartengine:1.2.0'
    ...
    implementation files('../achartengine-1.2.0.jar')

    after remove the first line problem solved.

提交回复
热议问题