Notice
Recent Posts
Recent Comments
Link
ยซ   2025/04   ยป
์ผ ์›” ํ™” ์ˆ˜ ๋ชฉ ๊ธˆ ํ† 
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
Tags
more
Archives
Today
Total
๊ด€๋ฆฌ ๋ฉ”๋‰ด

๐ŸŒฑ dreaming DiNO

[Kotlin] Firebase ๊ณ„์ •์ƒ์„ฑ ๋ณธ๋ฌธ

Android

[Kotlin] Firebase ๊ณ„์ •์ƒ์„ฑ

MK_____ 2023. 7. 11. 16:11

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 ๋กœ๊ทธ๋ฅผ ์ฐ์–ด๋ณด์ž..