skip to Main Content

Firebase OTP Authentication error in reCaptcha

import React, { useState, useRef } from "react"; import firebase from "../firebase"; const Auth = () => { const [phoneNumber,setPhoneNumber] = useState(''); const [verificationID, setVerificationID] = useState(''); const recaptchaRef = useRef(null); const handleSendOtp = ()=>{ if(recaptchaRef.current){ recaptchaRef.current.innerHTML = `<div id="recaptcha-container"></div>`…

VIEW QUESTION

Xcode won't create dSYM files for FirebaseAnalytics

I’m getting dSYM warnings for FirebaseAnalytics when validating my app in Xcode: Upload Symbols Failed
 The archive did not include a dSYM for the FirebaseAnalytics.framework with the UUIDs > [D080D817-CA37-3B97-8A51-421A372C12DB]. Ensure that the archive's dSYM folder includes > a DWARF…

VIEW QUESTION

Flutter – Firebase call exception

I'm trying to make simple login logic using Firebase but can't get rid of this error: Exception has occurred. DartError: Bad state: Cannot fire new event. Controller is already firing an event Here is my code: import 'package:firebase_database/firebase_database.dart'; import 'package:flutter/material.dart';…

VIEW QUESTION

firebase-emulator filestore rules

I have added some rules to the Firestore database in the firebase console and everything works fine with the cloud. When I deploy rules in the emulator, they are ignored and I get the error message "Missing or insufficient permissions".…

VIEW QUESTION
Back To Top
Search