Answers for "cannot fit requested classes in a single dex file (# methods: 99158 > 65536)"

27

cannot fit requested classes in a single dex file

//Add the library in app gradle
implementation 'com.android.support:multidex:1.0.3'

//Add this to the default config in the app gradle
multiDexEnabled true
  
//If this still doesn't work, consider adding this name into the android manifesto
android:name=".MyApplication"
Posted by: Guest on April-13-2020
0

Cannot fit requested classes in a single dex file (# methods: 86261 > 65536) com.android.builder.dexing.DexArchiveMergerException: Error while merging dex archives: The number of method references in a .dex file cannot exceed 64K.

defaultConfig {
    ...

    multiDexEnabled true
}
Posted by: Guest on October-21-2021

Code answers related to "cannot fit requested classes in a single dex file (# methods: 99158 > 65536)"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language