Is it possible to included a pre-loaded local SQL lite database in my app?
Currently I preload hundreds of local storage variables with links to allow my app fast access when running.
However, the down side of this is that on the first run it has to create all of these local storage variables and on slower devices (eg windows mobile and early android) this can take some time to do, spoiling the user experience.
So, to avoid this, I'd like to build a SQL lite database, fill it during development, and then include this with the app for release.
Is this possible? If so, how would I go about this?
many thanks
Andy.