Cannot fit requested classes in a single dex file (# methods: 89016 > 65536 ; # fields: 73707 > 65536) in android 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: Cannot fit requested classes in a single dex file (# methods: 65710 > 65536)
android {
defaultConfig {
...
minSdkVersion 21 <----- *here
targetSdkVersion 26
multiDexEnabled true <------ *here
}
...
}