Posts

Showing posts from October, 2021

How to create android project in android studio

Image
 For creating android follow this step  Step:-1                                               First click on New in File menu then click on New Project                                                                                                                                                                ↓           Step:-2 Select Empty activity ↓             ...

How to authenticate mobile number in android studio

Image
 Dear developer, if you have not connected your project to firebase already click on   Connect your project to Firebase if you have to face any problems during connecting your project to firebase, click on  How to connect the android project to firebase in android studio for  login with the phone number from one activity to another activity, follow these steps for easy implementation, Step: 1  Add classpath and maven in the project-level module, ↓ Click on project ↓ Click on the build. Gradle ↓ Note-: build. Gradle should have the same as below code ↓ buildscript { repositories { google() jcenter() mavenCentral(); } dependencies { classpath "com.android.tools.build:gradle:4.1.3" classpath 'com.google.gms:google-services:4.3.10' } } allprojects { repositories { google() mavenCentral() jcenter() maven { url "https://...

How to connect android project to Firebase

Image
  Following this process, you can easily connect your android project to firebase ↓ Create an android project in android studio  if you face any problem during creating a project click on  Create android project in android studio ↓  Open Tools menu in android studio ↓ Click on firebase ↓ Click on authentication using  a custom authentication system ↓ Click on - Add a firebase authentication SDK your app Note-: wait until the process complete on the status bar then  Open    Firebase console  on web browser ↓ click on add project Type project name same as project name in android studio ↓ click on continue ↓ Click on continue ↓ select on default account for firebase ↓ Click on Add fi...