Answers for "d8 cannot fit requested classes in a single dex file react native"

25

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
3

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

defaultConfig {
    ...

    multiDexEnabled true
}
Posted by: Guest on December-17-2020
1

Cannot fit requested classes in a single dex file (# methods: 65710 > 65536)

android {
    defaultConfig {
        ...
        minSdkVersion 21 <----- *here
        targetSdkVersion 26
        multiDexEnabled true <------ *here
    }
    ...
}
Posted by: Guest on December-20-2020
0

Cannot fit requested classes in a single dex file (# methods: 65710 > 65536)

def multidex_version = "2.0.1"
 implementation 'androidx.multidex:multidex:$multidex_version'
Posted by: Guest on December-20-2020

Code answers related to "d8 cannot fit requested classes in a single dex file react native"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language