Android Studio Tutorial - Email verification in Firebase

  Рет қаралды 27,938

EDMT Dev

EDMT Dev

6 жыл бұрын

Link donate:www.paypal.me/edmtdev
Facebook : / edmtdev
When Firebase Auth launched at Google I/O 2016, it allowed your users to create an account on your app where they signed in with an email address and a password. But this email address could be anything -- as it wasn't linked to the actual account through a verification process: so, for example, your users could identify themselves as [celebrity name]@[anydomain] if they wanted to. To solve this problem, Email Verification has been added to Firebase Auth -- where, in the above case, Firebase will send an email to that address containing a validation link. So if that celebrity really is signing up for your app, he'll get the link and click on it. You can check to see if the account is verified at sign in, and take an action in response -- such as blocking them from signing in.
android development tutorial,android programming tutorial,android app development tutorial,android tutorial for beginners,android app tutoria,android studio tutorial,learn android programming,android developer tutorial,android programming,android development,android studio tutorial for beginners,android course,android training,android development course,android app development course

Пікірлер: 95
@the_akash_khandagale
@the_akash_khandagale 6 жыл бұрын
best channel to learn Android... Just one suggestion. Please add voice to the videos so it will be much more interesting All the best👍👍
@eddydn71
@eddydn71 6 жыл бұрын
:D I'll try after i have new studio at my home ! Now i work on my office :P
@hygormarques3570
@hygormarques3570 6 жыл бұрын
Thanks for the awesome tutorial.
@eddydn71
@eddydn71 6 жыл бұрын
You're welcome my dear
@juanfelipe361
@juanfelipe361 5 жыл бұрын
can this be done in uber clone upon log in?
@knowledgebynaman
@knowledgebynaman 4 жыл бұрын
please reply did u design activity main xml file how its possible without design to create login screen
@eddydn71
@eddydn71 4 жыл бұрын
You can create view by programing
@abdalrahmangharaibeh1171
@abdalrahmangharaibeh1171 5 жыл бұрын
Great thank alot can you please till me how can i open the email app automatically after send email verification or based on button click
@eddydn71
@eddydn71 5 жыл бұрын
Use intent Intent i = new Intent(Intent.ACTION_SEND); i.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{ emailAddress }); i.putExtra(android.content.Intent.EXTRA_SUBJECT, subject); i.putExtra(android.content.Intent.EXTRA_TEXT, text); startActivity(Intent.createChooser(i, "Send email"));
@user-vp2uz3qi2p
@user-vp2uz3qi2p 6 жыл бұрын
if i want to sing up using Email and not twitter what code line i need to replace and to what code line i was looking for solution below and cold not find
@eddydn71
@eddydn71 6 жыл бұрын
kzfaq.info/get/bejne/b6eCorCDyZfPiKM.html Here you are my bro
@christianmanansala2779
@christianmanansala2779 6 жыл бұрын
Thanks in sharing bro! You're the best! BTW, how to transfer in another activity if the status is true?
@eddydn71
@eddydn71 6 жыл бұрын
:D Just call startNewActivitty method :D
@christianmanansala2779
@christianmanansala2779 6 жыл бұрын
How bro? what will be the condition? Thanks in reply :)
@eddydn71
@eddydn71 6 жыл бұрын
After you sign in , you can check status of verified and you can start new activity here
@christianmanansala2779
@christianmanansala2779 6 жыл бұрын
Actually bro, your codes are completely running to me and it was awesome. If the user verified the email verification, the status will become true. so, i want to transfer in MainActivity if the status is true, otherwise it will remain. I'm a beginner in android studio. I tried this code but it is not working. private void sendInfo() { FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser(); txt_email.setText(new StringBuilder("EMAIL : ").append(user.getEmail())); txt_uid.setText(new StringBuilder("UID : ").append(user.getUid())); txt_status.setText(new StringBuilder("Status : ").append(String.valueOf(user.isEmailVerified()))); if (txt_status.getText().equals(true)){ startActivity(new Intent(this, MainActivity.class)); finish(); } else{ return; } }
@dipesh7512
@dipesh7512 6 жыл бұрын
it works thanks !
@eddydn71
@eddydn71 6 жыл бұрын
You're welcome my dear
@EduardoLeorQ07
@EduardoLeorQ07 6 жыл бұрын
how it version its a working to day 24/11/2017? its compile not working compile 'com.firebaseui:firebase-ui-auth:3.1.0' :(
@eddydn71
@eddydn71 6 жыл бұрын
Show me your error my dear :D
@udayfranklin93
@udayfranklin93 6 жыл бұрын
i am using emulator 22 then which library of Firebase i have to use?? plz reply
@eddydn71
@eddydn71 6 жыл бұрын
Just use latest version :D
@LeonardoMorales08
@LeonardoMorales08 6 жыл бұрын
Thanks, great job!! Could you make a video of Facebook login and Facebook Auth with firebase, thank you
@eddydn71
@eddydn71 6 жыл бұрын
:D Yes ! I will do that soon !
@EduardoLeorQ07
@EduardoLeorQ07 6 жыл бұрын
Great video, so, how to change idiom from Spanish?
@shahbaze63
@shahbaze63 6 жыл бұрын
where in the world you are...... great and great......
@eddydn71
@eddydn71 6 жыл бұрын
:D You're welcome , really nice to hear that !
@hamzaashraf6024
@hamzaashraf6024 6 жыл бұрын
Great Working :D
@eddydn71
@eddydn71 6 жыл бұрын
You're welcome :D
@vijayanmergu5283
@vijayanmergu5283 6 жыл бұрын
Nice... thank you...
@eddydn71
@eddydn71 6 жыл бұрын
You're welcome my dear !
@vijayanmergu5283
@vijayanmergu5283 6 жыл бұрын
I want like this for Android..my webview app m.kzfaq.info/get/bejne/qMeFntRim67UdWg.html
@talibsan1573
@talibsan1573 6 жыл бұрын
compile not working com.firebaseui:firebase-ui-auth:bla:bla:bla Failed to resolve: firebaseui-android.internal:lintchecks:unspecified
@eddydn71
@eddydn71 6 жыл бұрын
github.com/firebase/FirebaseUI-Android Here you are my dear
@putrasinaga5401
@putrasinaga5401 5 жыл бұрын
Failed to resolve: com.twitter.sdk.android:twitter:2.3.0 when i compile 'com.firebaseui:firebase-ui-auth:1.2.0 in android studio 3.1.4
@eddydn71
@eddydn71 5 жыл бұрын
:D Hi , try use lattestt version of Firebase-ui-auth
@incrizza
@incrizza 5 жыл бұрын
implementation 'com.twitter.sdk.android:twitter:3.1.1'
@johnkn3992
@johnkn3992 6 жыл бұрын
via using this method we must register user before or user force to enter name and password,how we can register user only using a email verification code bro?
@eddydn71
@eddydn71 6 жыл бұрын
:-? You just need write API to create account and send API link to email of user my dear
@unknowngama
@unknowngama 5 жыл бұрын
@@eddydn71 i don't quite understand that. how would i go about doing what he describes? the "register user only using a email verification vode" part.
@eddydn71
@eddydn71 5 жыл бұрын
In Firebase Autth , you can make user need verified email before login in your app by use Email verification like tutorial .
@abdulrehmanbhattibhatti1711
@abdulrehmanbhattibhatti1711 6 жыл бұрын
very very great sir love u :p thanx sir plz can u make a tutorial on how to make a blood donation app blood bank system with multiple featutes like blood bank managment with fragments or with its admin panel or user client panel etc plz waiting for your reply ?
@eddydn71
@eddydn71 6 жыл бұрын
I'll try to do that ! Thank you for suggest
@rajughosh6173
@rajughosh6173 6 жыл бұрын
Sir when are you going to start with uber clone series
@eddydn71
@eddydn71 6 жыл бұрын
Next week my dear ! :D
@abdulwahid_mohammed
@abdulwahid_mohammed 6 жыл бұрын
EDMT Dev how long it will takes that
@mayurpancholi7714
@mayurpancholi7714 5 жыл бұрын
how can we send custom message contain mail for mail verification
@eddydn71
@eddydn71 5 жыл бұрын
Hi , you can customize content of email in Firebase Console :D
@kenichimendoza8571
@kenichimendoza8571 5 жыл бұрын
I'm new in Android Programming and firebase. I have an error notification says "Cannot resolve symbol 'AuthUI' ". I entered this line classpath 'com.google.gms:google-services:4.0.1' in the Project-level build.gradle and your line url "maven.fabric.io/public" at in the repositories. And in the App-level buid.gradle (dependencies) I added the lines implementation 'com.google.firebase:firebase-core:16.0.1' implementation 'com.firebaseui:firebase-ui-auth:1.2.0' and outside the dependencies apply plugin: 'com.google.gms.google-services' Can you help me to solve this please? I'll be using this for my register project. Thank you very much.
@eddydn71
@eddydn71 5 жыл бұрын
Have you import AuthUI package ?
@kenichimendoza8571
@kenichimendoza8571 5 жыл бұрын
EDMT Dev Is it in your tutorial? implementation 'com.firebaseui:firebase-ui-auth:1.2.0' I already entered this line above. That's how you import AuthUI right?
@eddydn71
@eddydn71 5 жыл бұрын
Kenichi Mendoza Try to clean and rebuild your project :D
@kenichimendoza8571
@kenichimendoza8571 5 жыл бұрын
EDMT Dev Okay I'll do it right away. :) Thank you for the fast reply.
@suchitagupta7633
@suchitagupta7633 5 жыл бұрын
sir can you tell me if i do not put email in firebase will it still verify email??
@eddydn71
@eddydn71 5 жыл бұрын
I don't understand your question my dear :D
@suchitagupta7633
@suchitagupta7633 5 жыл бұрын
In the last of your video you are adding email in firebase If we dont add email there then will it work??
@saisathvik5820
@saisathvik5820 6 жыл бұрын
Sir,how to verify a user with an OTP.can you please make a video on the same,or else you can integrate this functionality to our eat it application. Thank you sir.
@eddydn71
@eddydn71 6 жыл бұрын
kzfaq.info/get/bejne/obiZqNCi3Km1dXk.html Here you are :D
@saisathvik5820
@saisathvik5820 6 жыл бұрын
Sir, Thank you for reply..,can you integrate the OTP feature and Facebook login feature and last but not the least tutorial view feature in the eat it application... And sir,if you have time please check your mail I have you personally about an important matter.. Reply is always appreciated..
@eddydn71
@eddydn71 6 жыл бұрын
I'll try all my best !
@imanuellagurue3802
@imanuellagurue3802 6 жыл бұрын
how to make reset password accompanied by email verification?
@eddydn71
@eddydn71 6 жыл бұрын
firebase.google.com/docs/auth/web/manage-users Here you are my bro
@7us2
@7us2 6 жыл бұрын
Thanks
@eddydn71
@eddydn71 6 жыл бұрын
You're welcome my dear !
@joydey1794
@joydey1794 6 жыл бұрын
What's the reason as I'm getting Email: null on display?
@eddydn71
@eddydn71 6 жыл бұрын
Try watch my tutorial kindly and do step by step my dear :)
@joydey1794
@joydey1794 6 жыл бұрын
Actually Im not doing the same. I wanted to fetch the email address so I watched your video to see how to do it. But it shows email : null. I used Google sign in. Any way how to show it?
@vikashraj986
@vikashraj986 6 жыл бұрын
where is your code like github link
@eddydn71
@eddydn71 6 жыл бұрын
Some source code i don't public. My github : github.com/eddydn
@mahdishojaei8968
@mahdishojaei8968 6 жыл бұрын
Fehler bei der ÜbersetzungHello Noble Can you Create a game in which the text of the question-to-text corresponds to the answer !! Game connecting question to answer !!! Thank you for everything
@eddydn71
@eddydn71 6 жыл бұрын
Can you give me example ?
@mahdishojaei8968
@mahdishojaei8968 6 жыл бұрын
Ok my master!!! this is an example :www.funeasylearn.comThank you
@mahdishojaei8968
@mahdishojaei8968 6 жыл бұрын
Ok my master!!! this is an example :www.funeasylearn.comThank you
@abdulwahid_mohammed
@abdulwahid_mohammed 6 жыл бұрын
oh thats very nice, how to do verification firebase through sms mobile?
@EduardoLeorQ07
@EduardoLeorQ07 6 жыл бұрын
Is a great idea
@eddydn71
@eddydn71 6 жыл бұрын
kzfaq.info/get/bejne/obiZqNCi3Km1dXk.html
@abdulwahid_mohammed
@abdulwahid_mohammed 6 жыл бұрын
EDMT Dev ooh thank u it is very interesting.
@priyanshuraj1630
@priyanshuraj1630 6 жыл бұрын
How to resend the email verification when Your request to verify email is expired
@eddydn71
@eddydn71 6 жыл бұрын
Just call again sent email function my bro
@priyanshuraj1630
@priyanshuraj1630 6 жыл бұрын
Thanks, I'll try to do the same
@eddydn71
@eddydn71 6 жыл бұрын
You're welcome my dear :d
@jasonchesney9750
@jasonchesney9750 6 жыл бұрын
.setAllowNewEmailAccounts() this method is deprecated. using firebase-ui-auth version 3.2.2
@harshagarwal4089
@harshagarwal4089 4 жыл бұрын
Same here
@harshagarwal4089
@harshagarwal4089 4 жыл бұрын
What can I do
@pembatamang8233
@pembatamang8233 6 жыл бұрын
how to use a custom layout ?
@eddydn71
@eddydn71 6 жыл бұрын
Just create custom layout , and make function authentication with Firebase , and you can use example :D
@pembatamang8233
@pembatamang8233 6 жыл бұрын
ok I will try thanks alot!!
@mujtabac5
@mujtabac5 6 жыл бұрын
Beast is Beast
@eddydn71
@eddydn71 6 жыл бұрын
You're welcome my dear ! :D
@dumitru123-q3u
@dumitru123-q3u 6 жыл бұрын
Bro, you're nice, try to speak in your videos, however if your English speech is bad this isn't means that your bad, i guarantee that you can speak English well.Ok well we've also was like you in past, but if you'll try you will learn and you will improve your skills and your English also, that's ain't bad, just try, Good Luck Bro!
@eddydn71
@eddydn71 6 жыл бұрын
I will try in all newer tutorial , thank you my bro :D
@dumitru123-q3u
@dumitru123-q3u 6 жыл бұрын
Glad to hear this Bro
@eddydn71
@eddydn71 6 жыл бұрын
You're welcome my bro
Android Studio Tutorial - Geo Fencing with GeoFire
47:28
EDMT Dev
Рет қаралды 50 М.
لقد سرقت حلوى القطن بشكل خفي لأصنع مصاصة🤫😎
00:33
Cool Tool SHORTS Arabic
Рет қаралды 29 МЛН
Идеально повторил? Хотите вторую часть?
00:13
⚡️КАН АНДРЕЙ⚡️
Рет қаралды 10 МЛН
MISS CIRCLE STUDENTS BULLY ME!
00:12
Andreas Eskander
Рет қаралды 20 МЛН
Stop, Intel’s Already Dead!
13:47
Linus Tech Tips
Рет қаралды 153 М.
Android Firebase Send a User a Verification Email (Explained)
21:55
Android Studio Tutorial - UBER Car animation
46:30
EDMT Dev
Рет қаралды 84 М.
Password Hacking in Kali Linux
24:22
John Hammond
Рет қаралды 776 М.
React Native vs Flutter in 2024 - Make the RIGHT Choice (Difference Explained)
10:31
Daniel Dan | Tech & Data
Рет қаралды 160 М.
Find Information from a Phone Number Using OSINT Tools [Tutorial]
16:59
I built the same app 10 times // Which JS Framework is best?
21:58
Fireship
Рет қаралды 2,5 МЛН
لقد سرقت حلوى القطن بشكل خفي لأصنع مصاصة🤫😎
00:33
Cool Tool SHORTS Arabic
Рет қаралды 29 МЛН