vivekneel
07/10/2017, 5:43 PM@RealmClass
public class RealmString extends RealmObject {
public RealmString() {
}
public RealmString(String value) {
this.value = value;
}
private String value;
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}
and then just use RealmList<RealmString>
but the same logic does not work with RealmList<RealmArrayListCustomClass>