I have multiple targets for an iOS app. The two "flavors" of app are for two different clients and the two different apps communicate with two different servers. In the Windows version of the app, I used a target-specific XML file for each target to hold default settings. These are settings like the URL for the server that the app uses for, well, server stuff.
Should I use the plist file associated with the different targets in the Xcode project, create plist files for this specific purpose, or just use my own file type to store default settings values for the different targets?
I'm writing in Swift although it is not likely to matter for this question.
[Update]
I found this, which suggests using a plist file: How to set initial values for NSUserDefault Keys?