When I do an app update I will have a .CSV file in the DirAssets that will contain some SQLite updates that I want to apply only once. Since you cannot delete a file from DirAssets, how do you determine that this is the first execution after an update install (not a new install) and only apply this file one time?
For this case i have a table "config" in all my sqlite databases with one single record. One field of this record is the version number of the database. With the current database version number i can decide which updates are needed. After each update i increase the version number (simple integer) by one.