2

I am working on a flutter app which has a registration flow like this.

  • The user selects their Google/Apple id depending on the device
  • Then they enter their phone number to get an SMS
  • Then they enter the SMS code to verify it
  • Then they enter their personal info and enter into the app

This is the flow on Android but on iOS after entering the phone number the in-app browser open a link for a reCAPTCHA verification. I want to disable it as it results in bad user experience.

So, after looking online I enabled push notification and background mode but I am still getting redirected.

There might be something that I missed but can't find what is it.

Any help would be great. Thanks for your time!

Bhawna Saroha
  • 603
  • 1
  • 11
  • 28
  • Use Anonymous Authentication it will skip the reCAPTCHA part: https://firebase.google.com/docs/auth/ios/anonymous-auth . Using Anonymous Authentication in Web does skip the ReCAPTCHA . I guess it does in mobile too. For flutter https://www.youtube.com/watch?v=LBJoY4VjECo this link has the tutorial for implementing Anonymous Sign In – Adithya Shetty Aug 27 '20 at 08:33

1 Answers1

0

You've mentioned that you've enabled "Background Modes", it seems that you need to add the "Remote Notification" checkbox. See also the documentation "Pushing Background Updates to Your App"

These SO questions are related to your problem, give it a try.

MαπμQμαπkγVπ.0
  • 5,887
  • 1
  • 27
  • 65