๐ฑ dreaming DiNO
[Kotlin] Firebase ๊ณ์ ์์ฑ ๋ณธ๋ฌธ
1. Project ์ค์ , google-services.json ํ์ผ ๋ฃ๊ธฐ, gradle ์ค์
2. Tool - Firebase - Authentication
(๋น ์ง gradle ์์ ์ ์์ผ๋ฏ๋ก ์ฌ๊ธฐ์๋ SDK ์ฐ๊ฒฐํด์ ๋ฃ์ด์ฃผ๊ธฐ)
3. RegisterFragment.kt
private lateinit var auth: FirebaseAuth
override fun onCreateView(
inflater: LayoutInflater,
container: ViewGroup?,
savedInstanceState: Bundle?
): View {
binding = DataBindingUtil.inflate(inflater, R.layout.fragment_register, container, false)
with(binding) {
viewModel = registerViewModel
lifecycleOwner = viewLifecycleOwner
}
auth = Firebase.auth
return binding.root
}
binding.signUpBtn.setOnClickListener {
createAccount(binding.inputEmail.text.toString(), binding.inputPw.text.toString())
}
private fun createAccount(email: String, password: String) {
DebugLog.i(logTag, "createAccount-()")
if (email.isNotEmpty() && password.isNotEmpty()) {
DebugLog.d(logTag, "email: $email, pw: $password")
auth.createUserWithEmailAndPassword(email, password)
.addOnCompleteListener { task ->
if (task.isSuccessful) {
DebugLog.d(logTag, "๊ณ์ ์์ฑ Success")
val user = auth.currentUser
DebugLog.d(logTag, "user: $user")
} else {
DebugLog.d(logTag, "๊ณ์ ์์ฑ Fail, e => ${task.exception.toString()}")
}
}
}
}
ํ๋ฒ ์ฝ์
gradle ์ค์ ์ด ์๋ชป๋์ Fail์ด ๋จ์ด์ง๋ ์ค ์์๋๋ฐ, ๋น๋ฒ์ 1234๋ก ํด์ค์ ๊ทธ๋ฌ๋ค.
task.exception ๋ก๊ทธ๋ฅผ ์ฐ์ด๋ณด์..