I am creating an Android app with several actions. I am using Volley to access a REST service to get data from a server.
Some of the data will be used across several actions, so there needs to be a central way of keeping the data objects (e.g. User).
Is there a pattern for Android to do so? Where would I put the model within the app structure and how would I access it from all actions?