The problem is NOT about Execution failed for task ':dexDebug'
if you look above the error showed in red you are going to see this
To solve this problem permanently just add these lines in your build.gradle
file
android {
dexOptions {
jumboMode = true
}
}
For further details check this question: here