Wrap to integrate firebase auth email/password authentication. 
This library is partially copied from DonManfred authex lib.
Since there is no other working wrap of firebase email/password authentication I decided to challenge myself on creating my first library.
It may not be perfect, but it looks like working.
for reference visit: https://firebase.google.com/docs/auth/android/password-auth?authuser=4
Version: 1.4
Events:
Methods: 
Properties:
FirebaseAuthUser
Methods:
			
			This library is partially copied from DonManfred authex lib.
Since there is no other working wrap of firebase email/password authentication I decided to challenge myself on creating my first library.
It may not be perfect, but it looks like working.
for reference visit: https://firebase.google.com/docs/auth/android/password-auth?authuser=4
FirebaseAuthEmailVersion: 1.4
Events:
- usercreated (success As Boolean, User As FirebaseAuthEmailUser, info As String)
 - createfailure (success As Boolean, info As String)
 - signedin (success As Boolean, User As FirebaseAuthEmailUser, info As String)
 - signedinfailure (success As Boolean, info As String)
 - passwordreset (success As Boolean, info As String)
 - passwordresetfailure (success As Boolean, info As String)
 - userupdated (success As Boolean, info As String) <--- new
 - userdeleted (success As Boolean, info As String) <--- new
 - gettoken (success As Boolean, token As String, info As String)
 
- Initialize (eventName As String)
 - createUserWithEmailAndPassword (email As String, password As String, displayName As String, photoUrl As String)) <--- modified - displayName and photoUrl parameters. added in 1.4 version
 - signInWithEmailAndPassword (email As String, password As String)
 - sendPasswordResetEmail (email As String)
 - currentToken ()
 - updateProfile (displayName As String, photoUrl As String) <--- new
 - deleteuser () <--- new
 - SignOut
 
Properties:
- CurrentUser As FirebaseAuthEmailUserWrapper [read only]
 
FirebaseAuthUser
Methods:
- delete
 - sendEmailVerification
 - updateEmail (email As String)
 - updatePassword (password As String)
 
- Anonymous As Boolean [read only]
 - DisplayName As String [read only]
 - Email As String [read only]
 - EmailVerified As Boolean [read only]
 - IsInitialized As Boolean [read only]
 - PhotoUrl As String [read only]
 - ProviderData As List [read only]
 - ProviderId As String [read only]
 - Providers As List [read only]
 - Uid As String [read only]
 
Attachments
			
				Last edited: