I am getting an error while adding new libraries as Android dependencies. The limit of 64k is too low for me.
Asked
Active
Viewed 81 times
0
-
https://developer.android.com/studio/build/multidex – CommonsWare Sep 06 '20 at 15:46
-
Does this answer your question? [How to enable multidexing with the new Android Multidex support library](https://stackoverflow.com/questions/26609734/how-to-enable-multidexing-with-the-new-android-multidex-support-library) – fernandospr Sep 06 '20 at 16:39
1 Answers
1
YES,
defaultConfig {
...
minSdkVersion 15
targetSdkVersion 28
**multiDexEnabled true**
}
dependencies {
implementation 'com.android.support:multidex:1.0.3'
}
Please do changes in your build.gradle file

Vikas
- 432
- 4
- 17