Warning during archive App with iOS 8 Extension in Xcode 6

后端 未结 9 1644
旧巷少年郎
旧巷少年郎 2020-12-24 10:28

I have a problem while archiving my app.

I created a new target for an iOS 8 extension.

When I archive the app, I receive a warning.

The warning is <

9条回答
  •  独厮守ぢ
    2020-12-24 11:13

    There seems to be some confusion surrounding the effect of the Strip Debug Symbols During Copy build setting, I recommend reading this article for additional information: Skipping Copy Phase Strip.

    Here are my key takeaways from researching this question:

    • When you create a new project with Xcode 6.2 or later the values inserted into the project file are NO for both of the default build configurations (Debug and Release) for this setting.
    • Setting the value to YES in the Release configuration and the performing a Product Archive has no effect on the generated application binary size (I encourage you to verify this through a test on your own projects).
    • Debug symbols used for Sybolication of iOS crash reports come from an external .dsym file which is separate from the application bundle so I would not expect the symbol table to be included in the binary.

提交回复
热议问题