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:
Generate Sha-1 and sha256 debug key by entering this
gradlew signingReport
- click on Add fingerprint. add debug sha1 sha256 key here
- Download new google-service.json to the android app folder
- Add this code in while
FirebaseAuth
instantiating
FirebaseAuth auth = FirebaseAuth.instance;
auth.setSettings(appVerificationDisabledForTesting: true);