Enable multidex.
Open project/app/build.gradle and add the following lines.
defaultConfig {
...
multiDexEnabled true
}
and
dependencies {
...
implementation 'com.android.support:multidex:1.0.3'
}
If you have migrated to AndroidX, you'll want this instead (tip by Touré Holder):
dependencies {
...
implementation 'androidx.multidex:multidex:2.0.1'
}
Nenhum comentário:
Postar um comentário