I do authentication for Google via firebase, after selecting email nothing happens. There are 2 errors in the console:

E / SpannableStringBuilder: SPAN_EXCLUSIVE_EXCLUSIVE spans cant have a zero length

W / DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.

  • How exactly do you do the authentication (code)? - pavlofff

1 answer 1

This is a fairly common keyboard error, just change android:inputType="..." to android:inputType="textNoSuggestions" or android:inputType="textEmailAddress|textNoSuggestions" .

It can also be organized through this method too:

 mInputField.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS); 

Source link

  • Is it only in the EditText email change, or all? - Fedia Cholak
  • In the EditText (XML) parameters, find the string android: inputType = "..." and simply swap android: inputType = "textNoSuggestions" or android: inputType = "textEmailAddress | textNoSuggestions". - Salut Amigo
  • In the parameters of which EditText? This error occurs when you click on the Google authentication button. - Fedia Cholak
  • Change KeyboardType - Salut Amigo
  • How and where, explain in more detail. - Fedia Cholak