DEV Community

idawnwon
idawnwon

Posted on

Execution failed for task ':app:mergeDexDebug'

After added cloud_firestore: ^0.14.3+1 (I am not quite sure if it is the only reason), run on Android emulator, failed, it saids Execution failed for task ':app:mergeDexDebug'.

TahaTesser gives a hint:

You need to enable multidex

lordvidex provided a solution:
Go to android/app/build.gradle, add the following lines of codes:

dependencies {
  implementation 'com.android.support:multidex:1.0.3' //enter the latest version
}
android {
    defaultConfig {
        multiDexEnabled true
    }
}
Enter fullscreen mode Exit fullscreen mode

Run again, succeed.

Hope this helps!
So proud to be a coder!

Oldest comments (2)

Collapse
 
dk497 profile image
Dhananjai Kumar

Found helpful thank u very much

Collapse
 
amyewalker profile image
AmyeWalker

that's really helpful,thank you so much