How to solve the error “Projects created at console.firebase.google.com must use the new Firebase Authentication SDKs”

后端 未结 2 1478
甜味超标
甜味超标 2020-12-11 11:02

I am getting the following error:

Projects created at console.firebase.google.com must use the new Firebase Authentication SDKs ava

相关标签:
2条回答
  • 2020-12-11 11:23

    Projects that are created at firebase.google.com, can only use the Firebase Authentication SDKs available from https://firebase.google.com/docs/auth/.

    You're using a Firebase 2.x SDK, specifically this createUser() method.

    The fact that you're including a dependency on the new Firebase is not enough, you likely also have a dependency on Firebase for Android 2.x somewhere (e.g. compile 'com.firebase:firebase-client-android:2.5.2+'), which you'll need to remove.

    0 讨论(0)
  • 2020-12-11 11:33

    I solved this problem so:

    1. "Upgrade your Android app from Firebase.com"
    2. Press in console "Add Firebase to your Android app"
    0 讨论(0)
提交回复
热议问题