It’s a very common error in Android studio, and to fix it, you need to enable multidex so just add these codes in your gradle file and sync
implementation 'com.android.support:multidex:1.0.3'
defaultConfig {
multiDexEnabled true
It’s a very common error in Android studio, and to fix it, you need to enable multidex so just add these codes in your gradle file and sync
implementation 'com.android.support:multidex:1.0.3'
defaultConfig {
multiDexEnabled true