I know that you can add files only for some purposes: Adding files for individual purposes in Xcode 4
But is it possible to have several different versions of the file (same name and path) included in the Xcode project - one for each purpose?
eg. I have some images other than the target, but it is annoying that I have to replace files every time I want to build a different target.
How to solve this? On Android with Gradle, you have different folders included after each target, but I could not find something like that.
Resolved answer, but pay attention to this comment:
Important lesson: do not have a help folder with the same name as Target !!! You will get a strange compilation error that does not seem to be relevant to the problem. (e.g. unable to open executable '')
source
share