Delphi XE2 and iOS file sharing

I need to set UIFileSharingEnabled to yes in the .plist file in my FireMonkey application. This can be done manually in Xcode (and it works), however every time I change the code in Delphi and use the menu item "Export to Xcode", the .plist file is recreated and the changes made are lost.

Is there a parameter or mechanism in XE2 to add UIFileSharingEnabled or other parameters to the .plist project file whenever it is created?

+5
source share
2 answers

Instead of changing it in Delphi, you can change it in xcode by running a script, here's an example: UIFileSharingEnabled is only for debugging option

+2
source

While this does not give a direct answer to your question, keep in mind that it seems to you that you only need to export to xcode as "one". That is, every time you make changes, you do not need to re-export.

The exception seems to be adding extra units to your application.

+1
source

All Articles