D8: Cannot fit requested classes in a single dex file (# methods: 73066 > 65536) com.android.builder.dexing.DexArchiveMergerException: Error while merging dex archives: code example

Example 1: D8: Cannot fit requested classes in a single dex file (# methods: 85258 > 65536)

dependencies {
    ...

    implementation 'androidx.multidex:multidex:2.0.1'
}

Example 2: D8: Cannot fit requested classes in a single dex file (# methods: 85258 > 65536)

// For AndroidX
dependencies {
    ...

    implementation 'com.android.support:multidex:1.0.3'
}

Tags:

Java Example