Lets say I have a bunch of PSD's and other large files that arent being used in my xCode project... Do those get added to the app when I compile? Do I need to store those somewhere else?
+3
A:
I think you can remove them from your target's "Copy Bundle Resources" if you don't want them in your .app file.
Jonas
2009-03-13 22:54:11
I think he /wants/ them to be included in his project.
strager
2009-03-13 22:56:29
I thought he wanted them in his project but not in his app bundle.
Jonas
2009-03-13 23:19:04
+2
A:
By default, they will be included. If you don't want that, then do the following:
- In the Xcode project window, select all the resources you don't want included.
- Hit the big blue i button on the toolbar.
- Go to the Targets tab.
- Uncheck your app's target.
Incidentally, this also works if you have a code file you don't want compiled in.
Brent Royal-Gordon
2009-03-14 01:31:48
The comment about code is true, and quite handy for Full/Lite versions of an app, just have 2 targets.
Jonas
2009-03-14 03:32:30
A:
If you want to make sure, go to your build directory and open the .app package and see if the files are in there. Right-click on it in the Finder and choose "Show Package Contents"
Lou Franco
2009-03-16 00:22:44