Reputation: 225
I need to set UIFileSharingEnabled to yes in the .plist file in my FireMonkey application. This can be done manually in Xcode (and works), however each time I modify the code in Delphi and use the "Export to Xcode" menu item the .plist file is recreated and changes I have made are lost.
Is there a setting or mechanism in XE2 to have UIFileSharingEnabled or other settings added to the project .plist file whenever it is created?
Upvotes: 5
Views: 710
Reputation: 2660
Instead of changing it in Delphi you can change it in xcode by running a script, here's example: UIFileSharingEnabled on debug variant only
Upvotes: 2
Reputation: 1045
While this doesn't directly answer your question, be aware that it seems that you only need to export to xcode as a 'one off'. I.e. each time you make a change you do not need to re-export.
An exception seems to be if you add additional units to your application.
Upvotes: 1