Create A Firebase authentication application with following functionalities Login with email and password Registration with email verification Forgot password Logout Note: Github link has given at the end of page. Add Dependency To Firebase Library Open [YOUR_PROJECT_DIRECTORY]/app/build.gradle apply plugin: ‘com.android.application’ android { packagingOptions { exclude ‘META-INF/LICENSE’ exclude ‘META-INF/LICENSE-FIREBASE.txt’ exclude ‘META-INF/NOTICE’ } compileSdkVersion 23 buildToolsVersion “23.0.1” […]
Android FireBase Authentication Tutorial Part 1
Firebase is a set of backend services offered to the developers of platforms like, Android, IOS and Web. It allows us to create an application without a web server that performs authentication, data processing and storing. Firebase provides many types sign-in methods to achieve authentication for a firebase user. Below are the provider list, Here […]