You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem Description:
When creating an AuthMethodPickerLayout object to make a custom layout for the login screen,
you have to set button ids of the auth providers that you chose.
When you choose EmailBuilder as a provider but without providing a button id for it while creating the AuthMethodPickerLayout object the app crashes and shows this error in log cat: Caused by: java.lang.IllegalStateException: No button found for auth provider: password
So the problem here is the "password" word, it should say "email" or "EmailBuilder."
I thought that this could be misleading to some people so I created this issue.
Steps to reproduce:
Create an AuthMethodPickerLayout object to make a custom layout.
Choose EmailBuilder as a provider but without providing a button id for it while creating the object.
Observed Results:
Caused by: java.lang.IllegalStateException: No button found for auth provider: password
Expected Results:
Caused by: java.lang.IllegalStateException: No button found for auth provider: email
The text was updated successfully, but these errors were encountered:
Problem Description:
When creating an
AuthMethodPickerLayout
object to make a custom layout for the login screen,you have to set button ids of the auth providers that you chose.
When you choose
EmailBuilder
as a provider but without providing a button id for it while creating theAuthMethodPickerLayout
object the app crashes and shows this error in log cat:Caused by: java.lang.IllegalStateException: No button found for auth provider: password
So the problem here is the "password" word, it should say "email" or "EmailBuilder."
I thought that this could be misleading to some people so I created this issue.
Steps to reproduce:
AuthMethodPickerLayout
object to make a custom layout.EmailBuilder
as a provider but without providing a button id for it while creating the object.Observed Results:
Caused by: java.lang.IllegalStateException: No button found for auth provider: password
Expected Results:
Caused by: java.lang.IllegalStateException: No button found for auth provider: email
The text was updated successfully, but these errors were encountered: