인프런 커뮤니티 질문&답변
auth.createUserWithEmailAndPassword 유저생성이안돼요
작성
·
407
답변 1
1
개복치개발자
지식공유자
안녕하세요 보통 이 부분은 원인을 로그를 보면 나오는데
아래 부분에 로그 메세지를 확인해보시겠어요?
Log.w(TAG, "createUserWithEmail:failure", task.exception)
auth.createUserWithEmailAndPassword(email, password)
.addOnCompleteListener(this) { task ->
if (task.isSuccessful) {
// Sign in success, update UI with the signed-in user's information
Log.d(TAG, "createUserWithEmail:success")
} else {
// If sign in fails, display a message to the user.
Log.w(TAG, "createUserWithEmail:failure", task.exception)
}
}





