Android Enable multiDex

sapan
At some point while building applications you will run into error that you have count of functions.
So in that that case you need to enable mulidex

1. Open build.gradle and enter

    implementation 'com.android.support:multidex:1.0.3'
2. In the default config set multiDexEnabled true

android {
    defaultConfig {
        ...
        minSdkVersion 21
        targetSdkVersion 28
        multiDexEnabled true
    }
    ...
}


Post a Comment

0Comments
Post a Comment (0)

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Learn More
Accept !