Josh
Josh

Reputation: 12566

Android Metadata

Quick question. Where would the proper place be to store some metadata in my Android app that won't get overwritten with an update from the Market? I want to store an offline database version number, and compare it to an online database number, but i'm afraid if I store it in a meta-data tag in the Manifest, it'll get overwritten. On the iPhone version of the app, I just made a custom plist file, and used that. Is there a comparable way for Android to work with custom files like that?

Upvotes: 0

Views: 532

Answers (1)

MByD
MByD

Reputation: 137272

I think Shared Preferences are the place for that.

Upvotes: 1

Related Questions