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

后端 未结 22 1880
情话喂你
情话喂你 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 14:05

    There was a bug related to google-services that was eventually fixed in version 4.3.3.

    So you can either use 4.3.3 or the latest version (check here)

    classpath 'com.google.gms:google-services:4.3.3' // or latest version
    

    or downgrade to 4.1.0

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

提交回复
热议问题