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
createUserWithEmailAndPassword
Just for anyone still looking something that hasn't worked above:
I found that using your activity name before the this keyword in the first parameter of the .addOnCompleteListener works for me.
this
.addOnCompleteListener
eg. .addOnCompleteListener(LoginActivity.this, etc..);
.addOnCompleteListener(LoginActivity.this, etc..);
Hope this helps anyone still looking, Adam