skip to Main Content

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

Correct way to init firebase in flutter

I am trying to initialize Firebase in flutter project. I use FutureBuilder to load this function: static Future initializeFirebase({required BuildContext context}) async { try { FirebaseApp firebaseApp = await Firebase.initializeApp( options: FirebaseOptions( apiKey: "abc", authDomain: "def", projectId: "ghi", storageBucket: "jkl",…

VIEW QUESTION
Back To Top
Search