xcode archive 后没有dsym文件

来源:互联网 发布:linux 系统调用 编辑:程序博客网 时间:2024/06/05 01:08

   最近遇到一个 奇怪问题, 在 最新版xcode (7.3)打包后,竟然没有生成对应的 dsym 文件, google 了一番, ,找了一些 解答,如下:


   

You can download the correct dSYM from iTunes Connect. Login, go to My Apps, select your app, then tap on the Activity tab at the top. Tap on the relevant build, and, assuming the app was submitted with symbols in the first place, you should see the option to "Download dSYM."

The file you get is called dSYMs (without an extension) but it is in fact a zip file. Add the .zip extension, unzip, and you'll find your dSYM(s) inside.

  http://stackoverflow.com/questions/35159244/xcode-there-are-no-dsyms-available-for-download

但是我到 对应的 itunes connect app 中,页面没有 那个 蓝色下载链接, (dSYMs),


   

    -------------------------  问题找到了。。。

     项目组成员手误将  Build Settings -> Build Options -> Debug Information Format  中, 置为了DWARF,如果选为DWARF则不会产生dSYM文件,必须选择DWARF with dSYM File才会生成符号表文件。

1 0