skip to Main Content

Firebase otp recaptcha error: Cannot read properties of undefined (reading 'appVerificationDisabledForTesting')

I am using firebase to generate otp and i am getting an error about appVerificationDisabledForTesting being undefined. recaptcha_verifier.ts:114 Uncaught TypeError: Cannot read properties of undefined (reading 'appVerificationDisabledForTesting') at new RecaptchaVerifier (recaptcha_verifier.ts:114:1) at generateRecaptcha (Home.js:123:1) at handleSend (Home.js:139:1) here is the…

VIEW QUESTION

When using a nested RecyclerView to retrieve data from Firebase, how can I prevent duplicate data from being fetched?

public class OrderHistoryActivity extends AppCompatActivity { private FirebaseAuth firebaseAuth; private DatabaseReference databaseReference; private RecyclerView parentRecyclerView; private ArrayList<MyOrder> parentModelArrayList; private RecyclerView.Adapter ParentAdapter; private RecyclerView.LayoutManager parentLayoutManager; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_order_history); firebaseAuth = FirebaseAuth.getInstance(); FirebaseUser firebaseUser = firebaseAuth.getCurrentUser(); databaseReference…

VIEW QUESTION

google play services problem in flutter firebase

W/GooglePlayServicesUtil(16697): com.example.try_1 requires the Google Play Store, but it is missing. E/GooglePlayServicesUtil(16697): GooglePlayServices not available due to error 9 W/Firestore(16697): (24.7.0) [GrpcCallProvider]: Failed to update ssl context: com.google.android.gms.common.GooglePlayServicesNotAvailableException this is what prints me in the terminal of android studio when…

VIEW QUESTION

Firebase – How to do this on recyclerview in android using firestore

This is the result of RecyclerView: Firestore database schema: this is the code I am using. This only retrieve data like in a image db.collection("Expenses") .whereEqualTo("Email",email) .whereGreaterThanOrEqualTo("Date",MonthFirstDate) .whereLessThanOrEqualTo("Date",TodayDate) .orderBy("Date") .get() .addOnSuccessListener(new OnSuccessListener<QuerySnapshot>() { @Override public void onSuccess(QuerySnapshot queryDocumentSnapshots) { if…

VIEW QUESTION
Back To Top
Search