I have the following Entity
public class User { @PrimaryKey private final long id; private String _id; private String userName; private
Me also face the same issue. While I remove the
"_" underscore symbol, from "_id"
then works fine.
public class User { @PrimaryKey private final long id; private String myid; private String userName; private String email; }
It works for me and I hope it work for others. Thank You.