Answers for "nativescript Cannot fit requested classes in a single dex file"

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
1

cannot fit requested classes in a single dex file flutter

defaultConfig {
    ...

    multiDexEnabled true
}


//In dependencies
dependencies {
	implementation 'androidx.multidex:multidex:2.0.1'
Posted by: Guest on July-05-2020

Code answers related to "nativescript Cannot fit requested classes in a single dex file"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language