Unable to merge dex

前端 未结 30 2696
深忆病人
深忆病人 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:52

    Installing Google play services (latest version) + including

    android {
        defaultConfig {
            multiDexEnabled true
            }
    }
    

    in build.gradle solved the issue for me, make sure to clean and rebuild project!

提交回复
热议问题