copying in a sqlite file

In my IOS app I have
db=new SQLiteDatabase
dim dbfile as folderitem=SpecialFolder.Documents.Child(“gamedata.sqlite”)
db.DatabaseFile=dbfile
if not db.Connect then
end if

But copyfiles in the IDE gives me a destination of

app parent folder
resource folder
framework folder
bundle parent folder
contents folder

How do I get the database in a locatable location from a build?
Thanking you in advance!

You put it in your app resources
On first launch your app copies it from there to the documents folder

Build automation has to do with how your application is packaged for distribution not how it operates on the ultimate end consumers machine