Multiple dex files define Lcom/google/android/gms/internal/zzau

前端 未结 14 1254
[愿得一人]
[愿得一人] 2020-11-29 10:55

I get the error com.android.dex.DexException: Multiple dex files define Lcom/google/android/gms/internal/zzau; when i run my app The gradle files are

ap

14条回答
  •  醉话见心
    2020-11-29 11:22

    I had the same problem but mine was cause by firebase-ui newest version 2.0.0. So I downgraded to 1.2.0 and added the following line to Project level build.gradle file:

    allprojects {
        repositories {
            jcenter()
    
            // Add the following code
            maven {
                url 'https://maven.fabric.io/public'
            }
        }
    }
    

提交回复
热议问题