1Go to android/app/build.gradle and add the following lines of codes:
2
3android {
4 defaultConfig {
5 ...
6 multiDexEnabled true
7 }
8 ...
9}
10
11dependencies {
12 // multidex support at time of writing this 1.0.3 was latest make sure you add latest version
13 implementation 'com.android.support:multidex:1.0.3'
14}
1dependencies {
2 compile 'com.android.support:multidex:1.0.3'
3 //find latest version from here https://developer.android.com/studio/build/multidex
4}
5
6android {
7 defaultConfig {
8 multiDexEnabled true
9 }
10}
11