I have a high dimensional dataset that it provides with a json structure (about 3000 objects, an array of each object and dozens of objects in that array.) I read them with the help of the volley library. I want to save this data. in the database and access it easily. how can I do it I couldn’t find examples
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