Register default user on Firebase

public static void registerUser() { Task<AuthResult> result = mAuth.signInWithEmailAndPassword("app@domain.com", "password"); if (result.isComplete() && result.isSuccessful()) { Log.d(TAG, "User registered successfully!"); } }
Simple function that registers an user on Firebase.

#registration
#firebase #android

#cesarnog

Full documentation of Android's Firebase can be found at: https://firebase.google.com/docs/auth/android/password-auth

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.