Warning during archive App with iOS 8 Extension in Xcode 6

后端 未结 9 1507
旧巷少年郎
旧巷少年郎 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:14

    Check the "Strip Debug Symbols During Copy" option in your Xcode target's build settings. Its saying that it cant strip debug symbols because the extension was already signed.

    0 讨论(0)
  • 2020-12-24 11:15

    Check the "Strip Style"option in Xcode target's build Setting. If it is "Non-Global Symbols", change it to "All Symbols". this can solve the problem, but I don't know if there are other problems caused by this change.

    0 讨论(0)
  • 2020-12-24 11:16

    If you create a brand new sample project and a Today Extension in Xcode 6.2, the default values are set to NO for stripping of debug symbols.

    enter image description here

    0 讨论(0)
提交回复
热议问题