Reputation: 1
I'm having trouble determining where I should save data for an android game. I'm looking for a place that provides the following conditions:
The data is generated by the app and is not replaceable so it is important that it persists through updates. However, the data is specific to the app and not something generic like a picture.
Upvotes: 0
Views: 44
Reputation: 1963
You can store the data in the Shared Preferences. It will fit your requirements
Upvotes: 2