In my Android app, I have saved xml files that I parse to create an object. I am using the same XML files all the time so I was wondering is there a way I can kind of store the object so I don't need to recreate it each time the app is used.
I don't want to store it to the hard disc or shared preferences, basically I just want to hard code the object into my app so that the XML never needs to be parsed again.
Is this possible?