Set Minimum Password Length Firebase Email & Password Authentication
A FirebaseAuthWeakPasswordException
is thrown when using a weak password (less than 6 chars) to create a new account or to update an existing account's password. Use getReason()
to get a message with the reason the validation failed that you can display to your users.
See https://firebase.google.com/docs/reference/android/com/google/firebase/auth/FirebaseAuthWeakPasswordException for more details.
There is currently no way to configure a minimum password length or strength for Firebase email+password Authentication.
You could build such a restriction into your app, but tech-savvy users can bypass that by calling the API. Or you could introduce a "isPasswordApproved" flag that only a server-side process can set, and then validate the password strength there. But neither of these sound very appealing.