标签: android primary-key auto-generate android-room
我正在尝试将id设为主键并将其设置为autoGenerate。不知何故,当我编译我的代码时,我收到了这个错误:
"未找到autoGenerate"
这是我的代码:
@Entity public class Preference { @PrimaryKey(autoGenerate = true) private int id; public void setId(int id) { this.id = id; }