I have an android application which consists of a sqlite database. The database is what that determines what product it is. To illustrate say i have different databases of tourism details for different states. Each database size is of 10+ MB and one single product would be an android application containing a database (as asset) for a particular state.
The challenge I’m facing is how to install multiple such products on a single device?
Thanks in advance for the suggestions and help
Put all your code in a library project and create a new project for each of your products.
Each project will include the library project and will have a unique package name and the required database file.
Library projects:
http://developer.android.com/tools/projects/projects-eclipse.html#SettingUpLibraryProject