Firebase Authentication FirebaseNetworkException: A network error (such as timeout, interrupted connection or unreachable host) has occurred

后端 未结 17 1681
感情败类
感情败类 2020-12-06 04:55

I\'m creating an authentication workflow for my android app. I\'m allowing users to sign in with username/password and various OAuth providers. I\'m validating emails and pa

17条回答
  •  长情又很酷
    2020-12-06 04:59

    In my case the issue is due to mismatch versions of dependencies, then I have changed dependencies like below

    implementation 'com.google.firebase:firebase-auth:+'
    implementation 'com.google.firebase:firebase-core:+'
    implementation 'com.google.android.gms:play-services-auth:+'
    implementation 'com.firebaseui:firebase-ui-auth:+'
    

    then its started working perfectly.

提交回复
热议问题