firebase createUserWithEmailAndPassword is not working in android

后端 未结 8 568
别跟我提以往
别跟我提以往 2021-01-14 15:09

I\'m trying to use the createUserWithEmailAndPassword method to create users but not able to do so. The OnAuthenticate method is being called but user object is

8条回答
  •  时光取名叫无心
    2021-01-14 15:23

    I have the same problem.

    change:

    mAuth.createUserWithEmailAndPassword("9199999989@pintech.com", "corrfecthorsebatterystaple")
                .addOnCompleteListener(this, new OnCompleteListener()
    

    to:

    mAuth.createUserWithEmailAndPassword("9199999989@pintech.com", "corrfecthorsebatterystaple")
                .addOnCompleteListener(MainActivity.this, new OnCompleteListener()
    

提交回复
热议问题