3

I have an application that uses a SQLite database. How do I publish the database when I create .apk file? Should I put it on some server?

1 Answers1

1

You can create a exported flat file, ship it as a raw file in your apk package. And then run a import on first time load.

Edited http://www.reigndesign.com/blog/using-your-own-sqlite-database-in-android-applications/

Siddharth
  • 9,349
  • 16
  • 86
  • 148