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));…