Skip to main content

Working with Google Firebase Part-2

Hello guys, In 1st part of this series we work with setup our android app on Firebase console. In this part we will work with project structure and coding part.What we do in this :-
We will work with--  1: Signup
                                   2: Login
                                   3: Retrieve password



Hope you have setup your project. Project structure should be like this:




Add permission of Internet in you manifest.
               <uses-permission android:name="android.permission.INTERNET" />

Add below line in you build.gradle(picture-1) dependencies
        compile "com.google.firebase:firebase-auth:9.2.0"

Add below line in you build.gradle(picture-1) in last
        apply plugin: 'com.google.gms.google-services'

Add below line in you app-gradle(picture-2) dependencies
       classpath 'com.google.gms:google-services:3.0.0'

Now in onCreate(...) method of your Activity(in my case MainActivity), create an instance of
FirebaseAuth.With this auth instance, you can do the task of signup, login, password retrieve,
 change password, change your email etc. like this :

                    FirebaseAuth firebaseAuth = FirebaseAuth.getInstance();

SignUp :

firebaseAuth.createUserWithEmailAndPassword("your email",
        "your password").addOnCompleteListener(new OnCompleteListener<AuthResult>() {
            @Override   
            public void onComplete(@NonNull Task<AuthResult> task) {
                   if (!task.isSuccessful()) {
                      Snackbar.make(etEmail, "Unable to register...", Snackbar.LENGTH_SHORT)
                      .show();
                    return;
        }
        Toast.makeText(MainActivity.this, "Successfully registered...", Toast.LENGTH_SHORT)
        .show();
    }
});

Login :

firebaseAuth.signInWithEmailAndPassword("your email",
 "your password").addOnCompleteListener(new OnCompleteListener<AuthResult>() {
            @Override          
            public void onComplete(@NonNull Task<AuthResult> task) {
                 if (!task.isSuccessful()) {
                    Snackbar.make(etEmail, "You may not registered. Please Create        account first",
                    Snackbar.LENGTH_SHORT).show();
                    return;
                }
                Toast.makeText(LoginActivity.this, "Successfully login...", Toast.LENGTH_SHORT)
                .show();
            }
        });

Retrive Password :

firebaseAuth.sendPasswordResetEmail("your email").addOnCompleteListener(new OnCompleteListener<Void>() {
    @Override
    public void onComplete(@NonNull Task<Void> task) {
        if (!task.isSuccessful()) {
            Snackbar.make(etEmail, "Unable to send password reset email",                 Snackbar.LENGTH_SHORT).show();
            return;
        }
        Snackbar.make(etEmail, "Password reset email has been send to you email id." +
                " Please follow the link and reset your password", Snackbar.LENGTH_SHORT).show();
    }
});

This is all about Google Firebase Authentication. In my next blog i will post tutorial for Push Notification using Firebase. and SOURCE CODE of firebase authentication and firebase push notification both.

Suggestions are most welcome. Please keep reading my blog and share to your friends :)





Comments

Popular posts from this blog

app-policy

PRIVACY POLICY Last updated April 19, 2023 This privacy notice for Team CoderzDuniya ( " Company ," " we ," " us ," or " our " ), describes how and why we might collect, store, use, and/or share ( " process " ) your information when you use our services ( " Services " ), such as when you: Download and use our mobile application ( Revenue Calculator) , or any other application of ours that links to this privacy notice Engage with us in other related ways, including any sales, marketing, or events Questions or concerns?  Reading this privacy notice will help you understand your privacy rights and choices. If you do not agree with our policies and practices, please do not use our Services. If you still have any questions or concerns, please contact us at droidamar007@gmail.com . SUMMARY OF KEY POINTS This summary provides key points from our privacy notice, but you can find out more details about any of these t...

Java Socket Basics(Socket Programming in Java) Part-2(UDP)

Hi friends, We are going to discuss about UDP Socket Programming . In previous post  we discussed about the differences between TCP & UDP and the sample example of TCP Socket Programming. Below is the sample example of chat application using UDP  Socket Programming . UDP Sample :-  We are going to create an small example which contains two classes. UdpServer.java:-  This is a server class. Means this class will serve the purpose of socket connection. DatagramSocket is the java class and serve the purpose of Server and Client both. The overloaded constructor of DatagramSocket class matters. DatagramPacket is the java class which is responsible to transmit the data/packet over the network from server to client and vice-versa. UdpClient.java:-  This is client class. This serves the purpose of client which will communicate to server and send data to server and receive the data sent by server. UdpServer.java import java.net.DatagramPac...

Working with MPAndroidChart (how to create Bar Chart using MPAndroidChart)

Hi Friends, In this tutorial i am going to show, "How to create Bar Chart using MPAndroidChart". There is a lot of libraries for creating charts in android like AChartEngine, MpAndroidChart, AndroidPlot etc. Your first question may be, Why MPAndroidChart. So MpAndroidChart provides better animation functionality and easy to use in comparision. Using  MPAndroidChart library  we can draw a: ·          Simple Bar Chart ·          Grouped Bar Chart ·          Horizontal Bar Chart ·          Simple Line Chart ·          Line Chart with Cubic Lines ·          Grouped Line Chart ·          Combined Line and Bar Chart ·          Pie Chart ·...