i would like to ask a recommendation about data persistence on android.. the thing is this: I have a small rest app that get a json data from a RESTful API
that is de-serialized with jackson into an custom object and after that i use this object to feed my ui, the problem is that i want this data to be persistent or at least cache-able.
I saw there are some options that i could use: ORM-lite to save the object in a sqlite DB or save the JSON String into the shared Preference or a file in the internal memory, i already have read the article on the android developers site about this topic.
The structure of my object has at least 15 fields and it is related to an other object.
Which would be a good option?