java.util.zip.ZipException: duplicate entry during packageAllDebugClassesForMultiDex

You’ve probably fixed this by now but just so this doesn’t stay unanswered,
Try adding this to your build.gradle:

configurations {
    all*.exclude group: 'com.android.support', module: 'support-v4'
}

Leave a Comment