How to use FirebasePlugin.verifyPhoneNumber without reCAPTCHA verification

i’am using ionic V3. i have installed / cordova-plugin-firebase to send verificationPhone number.
here’s the code

window.FirebasePlugin.verifyPhoneNumber(number, timeOutDuration, function(credential) {
console.log(credential);

// ask user to input verificationCode:
var code = inputField.value.toString();

var verificationId = credential.verificationId;

var signInCredential = firebase.auth.PhoneAuthProvider.credential(verificationId, code);
firebase.auth().signInWithCredential(signInCredential);

}, function(error) {
console.error(error);
});

when i call FirebasePlugin.verifyPhoneNumbe, Firebase Authentication uses a reCAPTCHA verification to complete the phone sign-in flow.
is there a way to avoid reCAPTCHA verification in Firebase authentication ?
here’s my gradle.properties

Project target.

target=android-29

android.library.reference.1=CordovaLib

android.library.reference.2=app

cordova.gradle.include.1=cordova-plugin-android-native-pdfviewer/essyndic-AndroidNativePDFViewer.gradle

cordova.gradle.include.2=cordova-plugin-badge/essyndic-badge.gradle

cordova.system.library.1=androidx.legacy:legacy-support-v4:1.0.0

cordova.system.library.2=androidx.legacy:legacy-support-v4:1.0.0

cordova.system.library.3=androidx.legacy:legacy-support-v4:1.0.0

cordova.gradle.include.3=cordova-plugin-firebase/ess-build.gradle

cordova.system.library.4=com.google.gms:google-services:+

cordova.system.library.5=com.google.firebase:firebase-core:16.0.8

cordova.system.library.7=com.google.firebase:firebase-crash:16.+

cordova.system.library.8=com.google.firebase:firebase-config:16.4.1

cordova.system.library.9=com.google.firebase:firebase-analytics:19.0.+

cordova.system.library.10=com.google.firebase:firebase-auth:21.0.+

cordova.system.library.11=com.google.firebase:firebase-messaging:21.1.0

cordova.system.library.12=androidx.core:core:1.6.+

cordova.system.library.13=me.leolin:ShortcutBadger:1.1.22@aar

cordova.system.library.14=androidx.annotation:annotation:1.1.0

cordova.system.library.15=androidx.legacy:legacy-support-v4:1.0.0

cordova.gradle.include.6=phonegap-plugin-multidex/ess-multidex.gradle

cordova.system.library.16=com.squareup.okhttp3:okhttp:3.12.0

any suggestion please ?

for anyone who faced the same problem. the solution is to enable the Android DeviceCheck API for your project and add SHA 256 in your Firebase settings.firebase.