Trying to create a simple app with FireStore and Google Authentication. Having problem with the gradle:
In project \'app\' a resolved Google Play serv
There's a known bug with Google Services 4.2.0 that may cause this. Downgrading your google-services version to 4.1.0 in your project's build.gradle may resolve the issue
buildscript { dependencies { classpath 'com.google.gms:google-services:4.1.0' //decreased from 4.2.0 } }