duplicate entry: com/google/android/gms/auth/api/signin/internal/zzf.class

前端 未结 2 1380
借酒劲吻你
借酒劲吻你 2020-12-22 03:55

After updated my google play services and google repository, I also updated my firebase sdk and I get this error when I start running the app but when I gradle it no errors

相关标签:
2条回答
  • 2020-12-22 04:25

    Add play services.

    compile 'com.google.android.gms:play-services-auth:10.2.1'
    
    0 讨论(0)
  • 2020-12-22 04:49

    To resolve the secondary problem of Failed to resolve: com.twitter.sdk.android:twitter:2.2.0, update your top-level (Project) build.gradle file to include these repositories:

        repositories {
            jcenter()
            mavenLocal()
            mavenCentral()
            maven { url 'https://maven.fabric.io/public' }
        }
    }
    

    This is taken from the project build file for the Firebase UI sample app.

    0 讨论(0)
提交回复
热议问题