我需要从哪里从应用商店连接下载 dSYM?

From where I need to download the dSYM from app store connect?

我经常从应用商店连接的 Activity 选项卡下载 dSYM。

在该选项卡中有详细的构建列表,我们可以下载 dSYM。

但是从今天App Store Connect更新后,我看到没有activity。

Apple Thread 与此主题相关。

那么,我可以从哪里下载 dSYM?

我找到了下载dSYM的方法

  • 登录 App Store Connect,然后单击“我的应用程序”>“TestFlight”。
  • Select 您要为其下载 dSYM 的版本。
  • 单击构建元数据选项卡 > 下载 dSYM。

Here I found a mail sent by the apple developer program support.

I'm with Apple Developer Program Support. I’m following up with you regarding your recent email.

I understand you are unable to locate the Activity tab in App Store Connect. I can certainly look into this for you. After researching your request, it looks like the Activity tab has merged with the TestFlight tab in App Store Connect. You can now see your build metadata under the TestFlight tab under your app record.

更新(2020 年 12 月 17 日):

Activity 选项卡名称更改为 Mac 构建 Activity

我没有在“包含符号”旁边看到 link...我能够使用 flutter 提供的指令下载文件。

https://firebase.google.com/docs/crashlytics/get-deobfuscated-reports?platform=ios&authuser=1

运行 以下显示您计算机上所有 dSYM 的 UUID,然后搜索丢失的 dSYM:

mdfind -名称.dSYM |同时读取 -r 行;做 dwarfdump -u "$line";完毕 找到 dSYM 后,将其上传到 Crashlytics。如果 mdfind 命令没有 return 任何结果,您可以查看您的 .app 所在的 Products 目录(默认情况下,Products 目录位于 Derived Data 中)。如果您的应用已发布到生产环境,您还可以在磁盘上的 .xcarchive 目录中查找其 dSYM:

在 Xcode 中,从列表中打开管理器 window 和 select 您的应用。 Xcode 显示您项目的档案列表。 按住 Control 键并点按存档以在 Finder 中查看它。然后,再次按住 Control 单击它并单击“显示包内容”。 在 .xcarchive 中是一个 dSYMs 目录,其中包含作为 Xcode 的归档过程的一部分生成的 dSYM。当您使用管理器中的下载 dSYMs... 工具时,重新编译的位码 dSYMs 也会下载到此文件夹 window。