Execution failed for task ':app:dexDebug' Android Studio

后端 未结 8 683
别那么骄傲
别那么骄傲 2021-01-11 17:37

The application was able to execute before updating my android studio,this is the error I am getting:

Error:Execution failed for task \':app:dexDebug\'.
>         


        
相关标签:
8条回答
  • 2021-01-11 18:24

    Do this it really help me! configurations { all*.exclude group: 'com.android.support', module: 'support-v4' } write this inside gradle module. Hope it help!

    0 讨论(0)
  • 2021-01-11 18:30

    in my case, the

    compile 'com.google.android.gms:play-services:+'
    

    in my build.gradle exceeded the 65k method limit.

    i changed it to

    compile 'com.google.android.gms:play-services-maps:6.5.87'
    

    to fix it (i only need maps in my application)

    hope that helps

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