Skip to content Skip to sidebar Skip to footer

Firebase Firestore And Authentication Errors

After I added the firestore dependency it stopped working. I need both of them(firestore and auth), tried with more versions, and different one, but right now they are the last one

Solution 1:

Did you add the permission <uses-permission android:name="android.permission.INTERNET" /> to the Manifest?

Solution 2:

it might be you forget gms service, but i am not sure. Try this and give me a feedback. Thanks, ..

// Firestore
implementation 'com.google.firebase:firebase-firestore:18.1.0'
implementation 'com.google.firebase:firebase-storage:16.1.0'// Other Firebase
implementation 'com.google.firebase:firebase-auth:16.1.0'
implementation 'com.google.android.gms:play-services-auth:16.0.1'

Post a Comment for "Firebase Firestore And Authentication Errors"