Home > Back-end >  I am not able to disable google auth captcha from iOS flutter
I am not able to disable google auth captcha from iOS flutter

Time:02-24

How to disable captcha while I log in with iOS google firebase authentication?

I did upload APNS .p12 certificate for development and production too on firebase. I did enable the background to fetch, Remote Notification, Background Processing in ios Xcode.

But still, it's not disabled when I logged in from the iOS flutter Application.

Please advise me what step I have missed from my side for disabling captcha.

CodePudding user response:

enter image description here

Generate Sha-1 and sha256 debug key by entering this

gradlew signingReport

enter image description here

enter image description here

  1. click on Add fingerprint. add debug sha1 sha256 key here
  2. Download new google-service.json to the android app folder
  3. Add this code in while FirebaseAuth instantiating

FirebaseAuth auth = FirebaseAuth.instance;
auth.setSettings(appVerificationDisabledForTesting: true);
  • Related