com.google.firebase.database.DatabaseException: Failed to convert value of type java.lang.Long to String
is the error I keep getting w
Edit all the DB entries by adding double quote like "phone" : "900000000" and it will solve the problem, so e.g.:
"phone" : "900000000"
"phone" : 900000000 "name" : "xxxx", "password" : 111111
changed to:
"phone" : "900000000", "name" : "xxxx", "password" : "111111"