Why does Xcode 4 always copy all resource files on my iPhone after build?

I know that there are many questions like “how to get Xcode to always update resources”, etc. But I have the opposite problem - Xcode copies all my resources every time I click "Run" no matter what, and it takes too much time. Why doesn't Xcode check for resource changes? The entire project and resources are on a mapped network volume.

EDIT: Well, I think I have a point. There are two stages: “copy files to product” and “copy product to device”. It seems that Xcode copies and replaces the entire application package on the device every “Launch”, and there is no way to force Xcode to change the package that is already present on the executable device.

+7
source share
1 answer

The workflow is as follows: Create a product file (application!) Fill the product file with resources (Complete App!) Download the product file to the local device (Done!)

0
source

All Articles