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

前端 未结 2 1388
借酒劲吻你
借酒劲吻你 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: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.

提交回复
热议问题