I have checked my app build.gradle file and these are the only lines that are related to firebase in them
/***
* Firebase
*/
implementation \'com.google.f
Change to this work for me:
implementation 'com.firebase:geofire-android:2.1.2'
implementation 'com.google.android.gms:play-services:12.0.1'
implementation 'com.google.firebase:firebase-core:12.0.1'
implementation 'com.google.firebase:firebase-database:12.0.1'
implementation 'com.google.firebase:firebase-messaging:12.0.1'
implementation 'com.google.firebase:firebase-core:12.0.1'
implementation 'com.google.firebase:firebase-auth:12.0.1'
Try to find anything above 14.0.0 like:
implementation 'com.google.android.gms:play-services-location:15.0.0'
and try to change it to older version like
implementation 'com.google.android.gms:play-services-location:12.0.1'