skip to Main Content

Flutter web : How to fix CORS Error fo Google Apis

In web Flutter app hosted on Firebase Hosting, I try to make some Google Api calls. Like this : https://maps.googleapis.com/maps/api/place/autocomplete/json?input=tre&types=address&key=XXXXXXXXXX&sessiontoken=YYYYYYYYYYYYY&language=fr-FR&components=country%3Afr I already try to configure cors for Firebase Hosting, it works for images downloaded from Firebase Storage, but do not…

VIEW QUESTION

com.google.firebase.database.DatabaseException: Failed to convert value of type java.lang.Boolean to String What is it about?

the application worked fine, but then it started crashing when I started the given activity private void loadSpins() { reference.child(FirebaseAuth.getInstance().getUid()).addValueEventListener(new ValueEventListener() { @Override public void onDataChange(@NonNull DataSnapshot snapshot) { UserModelTask modelTask = snapshot.getValue(UserModelTask.class); if (snapshot.exists()) { currentSpin = modelTask.getSpins(); binding.currentSp.setText(String.valueOf(currentSpin));…

VIEW QUESTION

Firebase – Get just records count of a realtime database without retrieving all dates from database

UPDATED My current code to get records count: commentRef.child(poi.Id).addListenerForSingleValueEvent(new ValueEventListener() { @SuppressLint("NotifyDataSetChanged") @Override public void onDataChange(@NonNull DataSnapshot snapshot) { commentList.clear(); setProgressDialog(); if (isAdded()) { counterValue = (int) snapshot.getChildrenCount(); setCounter(counterValue); } } This returns me the record count. If will modify…

VIEW QUESTION
Back To Top
Search