Skip to content
Advertisement

Tag: realm

RealmObject AND Parcelable

I’m new to Realm for Android so I’m not sure I’m approaching this the right way. I have a class which looks like this: The problem is the Parcelable interface contains methods like describeContents() writeToParcel() and RealmObjects aren’t supposed to have methods other than getters and setters: So my question is: How can I make these two work together? Is

Advertisement