com.google.firebase.database.DatabaseException: Failed to convert value of type java.lang.Long to String
is the error I keep getting w
The problem is that you are creating the property "mobile_phone" as a String and on Firebase it is a Long type.
Change:
private String mobile_phone;
To:
private Long mobile_phone;