com.google.firebase.database.DatabaseException: Failed to convert value of type java.lang.Long to String
is the error I keep getting w
Try adding quotes (") around the numbers:
"
For example mobile_phone = "1234" instead of mobile_phone = 1234
mobile_phone = "1234"
mobile_phone = 1234