<@U5CCZKFJL> Arraylist of strings is not an issue ...
# android
v
@hetang Arraylist of strings is not an issue for me. I can do something like this
Copy code
@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>