I have been developing a free game (with ads) on the Android Market. Now quite a few people are requesting me to do a paid version without ads. I have no experience in keeping multiple versions of a single app.
I have already factored out the app on Eclipse: a library project and a (free) app project. Now I'm going to add a new project for the paid version.
My main problem has to do with the most efficient and reliable way to import old settings and data from the free version if it happens to be already installed on user's phone.
- Ideally, I want users not to have to export data and settings manually.
- I think hardcoding file paths is not robust.
- I am too lazy and daunted to implement a
ContentProvider
.
Is there an easy way to query for data and settings from another app of mine, given the package name?
Thank you very much.