Android Studio Gradle Error: Multiple dex files define

In your build.gradle file try adding the following block inside your android block.

dexOptions {
    preDexLibraries = false
}

Leave a Comment