delphi IOS发布添加其他资源文件

添加自己的文件。

Project>Deployment>Add File

Remote Path

android and IOS:

assetsinternal

TPath.GetDocumentsPath

/data/data/com.tt.project/files

IOS目录:

StartUpDocuments

要求带斜杠

 StartUpDocuments

TPath.Combine(TPath.GetDocumentsPath, 'filename')

参考

http://www.cnblogs.com/flyingwang/p/3452164.html

assets

TPath.GetSharedDocumentsPath(也就是/mnt/sdcard/Android/data/.../files)

/storage/sdcard0/Documents/msdb.db

原文地址:https://www.cnblogs.com/cb168/p/5065204.html