Skip to content Skip to sidebar Skip to footer

Firebase Databaseexception Can't Convert Object Of Type String

I'm getting this strange error when trying to load a set of data into the FirebaseRecyclerAdapter com.google.firebase.database.DatabaseException: Can't convert object of type ja

Solution 1:

Simple enough I simply was looking one "child" too far in my database:

database = FirebaseDatabase.getInstance().getReference().child("users").child(user.getUid()).child("profiles_info"); 

gave me the correct location and it could load everything correctly. Check your paths!

Post a Comment for "Firebase Databaseexception Can't Convert Object Of Type String"