0

I have an app containing multiple buttons, that will be taken out of a database (SQLite).

Do I have to build this database when the app first get started by the user or can I publish the app inclusive the database? And do images on the "internal storage" act the same way?

codepleb
  • 10,086
  • 14
  • 69
  • 111

1 Answers1

1

You can have a predefined database delivered within your app. Simply copy it from an app resource (raw folder) to the database location or load a database from the server. I once did a project in which we copied a pre-created sqlite database from the server to the app during startup.

userM1433372
  • 5,345
  • 35
  • 38