Xcode Archive 后没有dSYM文件

最近遇到了一个问题,因为要定位友盟上的崩溃信息,所以需要找到打包时生成的dSYM文件,找了一会发现没有找到。百度了一下,找了一些解答,如下:
You can download the correct dSYM from iTunes Connect Login,go to My Apps, select your app,then tap 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)
http://stackoverflow.com/questions/35159244/xcode-there-are-no-dsyms-available-for-download
但是我到对应的iiTunes Connect App 中,页面没有找到那个蓝色连接。
问题找到了------------------------------
因为误将 Build Settings -> Build Options -> Debug Information Format 中,设置成了DWARF,如果选为DWARF则不会产生dSYM文件,必须选择DWARF with dSYM File才会产生符号表文件。

你可能感兴趣的:(Xcode Archive 后没有dSYM文件)