In project 'app' a resolved Google Play services library dependency depends on another at an exact version

后端 未结 22 1909
情话喂你
情话喂你 2020-12-08 13:42

Trying to create a simple app with FireStore and Google Authentication. Having problem with the gradle:

In project \'app\' a resolved Google Play serv

22条回答
  •  死守一世寂寞
    2020-12-08 13:57

    I resolved it by simply clearing the app-level dependencies block leaving just the default Android dependencies like so:

    dependencies {
      testImplementation 'junit:junit:4.12'
      androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
      androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'
      implementation 'androidx.multidex:multidex:2.0.0'
    }
    

提交回复
热议问题