Cannot fit requested classes in a single dex file (# methods: 70914 > 65536) com.android.builder.dexing.DexArchiveMergerException: Error while merging dex archives: The number of method references in a .dex file cannot exceed 64K. code example
Example 1: cannot fit requested classes in a single dex file
implementation 'com.android.support:multidex:1.0.3'
multiDexEnabled true
android:name=".MyApplication"
Example 2: D8: Cannot fit requested classes in a single dex file (# methods: 85258 > 65536)
defaultConfig {
...
multiDexEnabled true
}