Create a simple Login App using Firebase Auth [2024]

Поділитися
Вставка
  • Опубліковано 30 січ 2025

КОМЕНТАРІ • 24

  • @bloxxiq
    @bloxxiq 5 днів тому +1

    When I debug with a physical device, two apps are installed. One shows the MainActivity, while the other shows the Login/SignupActivity. Otherwise it works fine.

  • @Hamza_BR00
    @Hamza_BR00 8 місяців тому +1

    Great work man, keep it up, subscribed !

  • @vladpopescu8625
    @vladpopescu8625 8 місяців тому +1

    Thank you so much,it works perfect keep up the good work.💪

  • @blakcommand7853
    @blakcommand7853 6 місяців тому +2

    Thank you sir... coding aer kichu kichu problem solve kore dile bhalo hoi..

  • @davidrobles6403
    @davidrobles6403 4 місяці тому

    Gracias, salvaste mi semestre

  • @GeorgeSapanta
    @GeorgeSapanta 2 місяці тому

    How about after i signup i will be redirected to login not in the mainActivity how can i do that?

  • @dravidkumar3732
    @dravidkumar3732 Місяць тому

    Sir I need this all in java..😢

  • @techkid358
    @techkid358 6 місяців тому +1

    can u add the otp login authnticaiton in jetpack compose , actually I have tried to implement but my app crash..
    or you can make a fully fleged application, which has not been made by anyone on youtube
    1. number Sign-In with OTP in Firebase with Jetpack Compose
    2.Gmail sign-in with Firebase in jetpack COmpose
    2. how to send welcome mail in jetpack compose Using Firebase
    3. How to send gmail verifiaction link in jetpack compose

  • @yahyaebru5634
    @yahyaebru5634 5 місяців тому

    Hello sir I do what you do sir but why the textview doesnt want to switch activity like you tested?

  • @aivescasio5531
    @aivescasio5531 7 місяців тому +1

    cant restart to the login page even when restarting app

    • @RavecodeAndroid
      @RavecodeAndroid  7 місяців тому

      Check menifest

    • @aivescasio5531
      @aivescasio5531 7 місяців тому +1

      @@RavecodeAndroid its okay already, i did put a back button that you said in the other comments and it worked thanks

  • @arulkumar5810
    @arulkumar5810 8 місяців тому +1

    how to log out ??

    • @RavecodeAndroid
      @RavecodeAndroid  8 місяців тому +2

      Add a logout button with this function in its onClickListener Firebase.auth.signOut() and move the user to LoginActivity using an intent

    • @aivescasio5531
      @aivescasio5531 7 місяців тому

      @@RavecodeAndroid where?

  • @nisargshah9330
    @nisargshah9330 4 місяці тому

    Not working

  • @yahyaebru5634
    @yahyaebru5634 4 місяці тому +1

    Sir why when i binding.button.setOnClickListener{} why i must type binding.button?.setonclicklistener{} while in my other .kt still not error and i not must type the ?.

    • @RavecodeAndroid
      @RavecodeAndroid  4 місяці тому

      "?" Means the value could be null. Kotlin by default has null safety for each variable

    • @yahyaebru5634
      @yahyaebru5634 4 місяці тому

      @@RavecodeAndroid so its will be work fine right sir?