Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

I regularly download dSYM from the Activity tab in app store connect.

enter image description here

In that tab there are list of builds from their detail we can download the dSYMs.

But from today after After App Store Connect update, I have seen that there is no activity.

Apple Thread related to this topic.

enter image description here

So, From where I can download the dSYM?

like image 351
Ashish Kakkad Avatar asked Dec 09 '20 04:12

Ashish Kakkad


People also ask

How do I install dSYM?

Upload the dSYM File to AppDynamics Using the UIFrom the Mobile App menu, click Configuration. Click Mobile App Configuration >. From dSYM Mappings, click Upload dSYM package file for iOS crashes. From the XCode dSYM package upload dialog, click Choose File.

How do you download an app from App Store Connect?

From Users and Access, click Keys. The page opens with App Store Connect API selected. Navigate to an API key under the Active section, then click Download API Key for the key you want to download. In the dialog, click Download.

How do I get dSYM files on my phone?

Log in to App Store Connect, then click My Apps > Activity. Select the build you want to download a dSYM for. Click Build Details > Download dSYM.


2 Answers

I found the way to download the dSYM

  • Log in to App Store Connect, then click My Apps > TestFlight.
  • Select the build you want to download a dSYM for.
  • Click Build Metadata Tab > Download dSYM.

enter image description here

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.

Update (17th Dec 2020):

Activity tab name changed to Mac Build Activity

enter image description here

like image 120
Ashish Kakkad Avatar answered Oct 26 '22 19:10

Ashish Kakkad


I do not see a link next to "Include Symbols'...I was able to download the files using an instruction provided by flutter.

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

Run the following to display all your dSYMs' UUIDs on your machine, then search for the missing dSYM:

mdfind -name .dSYM | while read -r line; do dwarfdump -u "$line"; done Once you find the dSYM, upload it to Crashlytics. If the mdfind command doesn’t return any results, you can look in the Products directory where your .app lives (by default, the Products directory is located in Derived Data). If your app is released to production, you can also look for its dSYM in the .xcarchive directory on disk:

In Xcode, open the Organizer window and select your app from the list. Xcode displays a list of archives for your project. Control-click an archive to view it in Finder. Then, control-click it again and click Show Package Contents. Within .xcarchive is a dSYMs directory that contains dSYMs generated as part of Xcode’s archiving process. Recompiled bitcode dSYMs are also downloaded to this folder when you use the Download dSYMs... tool in the Organizer window.

like image 25
allcui Avatar answered Oct 26 '22 19:10

allcui