Skip to main content

Working with Google Firebase Part-1

Hello World,
I am going to start my blog by today. I am felling very glad.
So by today I am going to create an tutorial about Google Firebase. As mentioned by Google I/O- "Firebase is a mobile platform that help you to develop highly-qualified apps, earns money and many more."
Firebase is a bunch of features like Authentication, Cloud Messaging,  Real Time Database, Storage, Crash Reporting etc.
In my first page i am going to discuss with Firebase Authentication. Please follow the steps below :-
 Registering application on Firebase console
In order to use Firebase authentication first we need to create/register our project at Firebase console.
 After successful creation of your app at Firebase console, select your created application and goto firebase app console. You will see various options at left panel. Now look for a setting icon and click. You will see some options. Choose the option "Project Setting". You will see option for various plateform. Choose android and follow the steps. You will get downloaded a file called "google-services.json" save it for further uses. Now click on Auth option and you will see a list of auth modes(If first time you will see page tell you to setup sign-in mode. Just click this button).

Then choose option of Email/Password and enable it. Now you are done with Firebase application setup.



This is all about setting your app on firebase console. In next part we will go for coding part.
Please keep reading my blog and refer to friend if you find something interesting :)

Comments

Popular posts from this blog

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 ·          Scatter Chart ·          Candlestick Chart ·          Radar Chart Here we will create Simple Bar Chart with multiple color based on ranging. Ok We start with coding part now. First of all create your project in Android Studio and add gradle dependency for  MPAndroidChart library  into y

JavaFX WebView- Creating Browser Sample

Hi Friends, In this post, i am going to give an overview about JavaFX WebView . This is an embedded browser component which is based on WebKit . If allow you to use Css, JavaScript, HTML5 and more to customise your embedded browser. The embedded browser enables you to perform the following tasks in your JavaFX applications: Render HTML content from local and remote URLs Obtain Web history Execute JavaScript commands Perform upcalls from JavaScript to JavaFX Manage web pop-up windows Apply effects to the embedded browser  I am going to provide and explain you a sample example to create your embedded browser. This is a JavaFX sample example. if you want to take an introduction about JavaFX please visit my previous blog . I have use IntelliJ Idea IDE for this example. You can visit this link  to understand how to create JavaFX application. I am attaching the project structure image below- In this sample- we have two java class. First

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.DatagramPacket ; import java.net.Datag