Android app crashes on firebase phone authentication

后端 未结 3 1838
长情又很酷
长情又很酷 2021-01-29 04:25

I am using firebase for phone number authentication.When I used my phone number, it automatically verifies it.But when I use another phone number I get classCastExceptio

3条回答
  •  [愿得一人]
    2021-01-29 04:47

    I don't know what you're trying to do with this line:

    .addOnCompleteListener((Executor) this, new OnCompleteListener() {
    

    Casting this to Executor doesn't seem to make sense. What you want instead of this is a reference to the current Activity. Try getActivity() instead to get this reference.

提交回复
热议问题