I created an android application and everything works fine. It uses SQLite database into which after calling the onCreate method values are inserted and later requested.
In my opinion it is a waste of performance if i fill it whenever the onCreate is called. When i deliver the application to a user I would like to give this prefilled database(it will not change any more), so that
- it is not refilled whenever onCreate is called
- it is not necessary any more to have data - which should be inserted - hardcodedcin my code
Is there any possiblity to do this, or is my only option to fill it during runtime?