Firebase authentication: Part-1: Create Firebase Project and connect it to your app. check... Part-2: Registration. 1. In firebase, there are many ways of registration.if we go firebase console, we can see these ways.. we should enable one of their Sign-in methods first. 2. Design UI for Signup Page: 3. Now we should do some code for receiving data/email & password from those EditText and write some code for Firebase authentication by Email & Password. Declare & Initialize mAuth. Pass the Email & Password to Firebase. 4. Above 1st we get the Email & Password from input Field. then pass them as a parameter of mAuth .createUserWithEmailAndPassword(email, password) method. here is the full java class: package com.nirjhor3029.firebaseauthentication; import android.content.Intent; import android.os.Bundle; import android.support.annotation.NonNull ; import android.support.v7.app.AppCompatActivity; impo...
মন্তব্যসমূহ
একটি মন্তব্য পোস্ট করুন