Do we need to annotate static fields with @ignore in room?
@Entity(tableName = "table_users")
public class User {
private static final String MY_CONSTANT = "whatever";
@PrimaryKey(autoGenerate = true)
public int id;
public String name;
public int age;
}
I read the documentation but did not find anything about this.