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

前端 未结 14 1221
[愿得一人]
[愿得一人] 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:23

    I encountered the same issue after manually adding Firebase to my app.
    For me the solution was changing:

    classpath 'com.google.gms:google-services:3.2.0'
    

    to:

    classpath 'com.google.gms:google-services:3.0.0'
    

    in the root-level build.gradle file.

提交回复
热议问题