Can't download dSYM file from iTunes connect

后端 未结 5 1549
我在风中等你
我在风中等你 2020-12-30 18:47

I need to download the dSYM file so, as I usually do, I went to iTunes connect -> My app -> Activity -> All builds -> latest version.

\"Include symbols\" is Yes, bu

相关标签:
5条回答
  • 2020-12-30 18:50

    App Store DSYM is different for our local DSYM,When bitcode disable you can user local DSYM,when bitcode enable,you should user App Store DSYM.

    0 讨论(0)
  • 2020-12-30 18:51

    Just to bring this up to date as of Xcode 12.2, Apple is allowing Xcode to download the symbols.

    1. Go to the Organizer and find the app you uploaded to the store.
    2. Click the Download Debug Symbols button beneath Details.
    3. Right-click the app and Show In Finder.
    4. Right-click the xcarchive and Show Package Contents
    5. Your dSYMs are in the folder...

    0 讨论(0)
  • 2020-12-30 18:53

    I had a similar issue and the accepted answer didn't work for me. AppCenter was asking for some missing symbols, and it didn't accept the ones from the app's archive (it needed the dSym's with random letters and numbers in the file name)

    In AppstoreConnect, All Builds -> Current Version -> Current Build -> Includes Symbols said YES, but no download link. BitCode was enabled when I published the app.

    I just waited a couple more days (I think that there were 5 days in total) and the Download dSYM link appeared.

    0 讨论(0)
  • 2020-12-30 18:57

    It seems 'Download dSYM file' link is intended for downloading dSYMs generated by App Store when bitcode is enabled. Thus if bitcode is disabled for your application dSYM files are contained by your Mac. If bitcode enabled the final compilation of your binary will be execute on App Store and new dSYM will be generated. And new dSYM you will be able to download from App Store Connect with 'Download dSYM file'.

    See 'Bitcode' section in Apple documentation.

    0 讨论(0)
  • 2020-12-30 19:13

    Do you still have the archive available in Xcode as you can save them out from there:

    1. Select Window -> Organizer
    2. This will open up Organizer window containing your archives.
    3. Right click on Archive and select 'Show in Finder'.
    4. Right click archive in finder and select 'Show Package Contents'.
    5. Project.xcarchive contains dSYMs, Info.plist and Products.
    6. dSYMs folder contains dSYM file of your project.

    You can enable the Debug Symbol file generation during build within Xcode as below.

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