[FIXED] Crashlytics – Fehlender dYSM-Fehler

Ausgabe

Ich habe mein iOS-Projekt in Crashlytics integriert , ich erhalte die Fehlermeldung „We are missing dYSM to process crashes“, ich habe dYSM für meinen neuesten Build hinzugefügt, aber es funktioniert nicht, es wird immer wieder gefragt, ob dasselbe Problem angezeigt werden soll. Keine Hilfe bei “Crashlytics Support”. Kann mir jemand helfen.

Geben Sie hier die Bildbeschreibung ein

Lösung

Das war der Prozess, den ich brauchte, um das gleiche Problem für mich selbst zu lösen. Hoffentlich hilft es jemand anderem.

Stellen Sie sicher, dass Sie die richtigen dSYMs haben

Wenn Sie die App über ein Archiv in den Store hochgeladen haben, stellen Sie sicher, dass Sie die dSYMs herunterladen

  1. Gehen Sie Window->Organizerin Xcode zu
  2. Suchen Sie das Archiv, das Sie verwendet haben
  3. Wählen Sie das Archiv aus und klicken Sie auf „dSYMs herunterladen“.

Finden der UUID

  1. In Fabric sollten Sie die Meldung „Missing dSYM“ sehen. Klicken Sie darauf, und Sie werden etwas in der Art unten sehen:

Fehlendes dSYM-Dialogfeld im Abschnitt Fehlende dSyms von Fabric
(I’ve blacked out the UUID, but it should display the UUID in that box)

If you do not see the missing dSYM Message, you can find it here.

  1. Click on the gear on the top right of your Fabric Dashboard in your web browser.
  2. Click on “Apps”
  3. Click on your Application
  4. On the right you should see “Missing DSYMs”

Finding the dSYM associated with the UUID

Copy the UUID from that message, and paste the following command into an open Terminal window:

mdfind "com_apple_xcode_dsym_uuids == THE-UUID" 

This will tell you where the dSYM file you need is located.

Symbolicating the Crashes

Upload the file that you just located in the missing dSYM page.

The crashes will take some time to symbolicate after this (for me it takes 5-10 minutes).

Notes

On iOS 9, if you’re using Bitcode, you’ll need to download the dSYMs from Xcode first.

Wenn Sie die falsche Datei hochladen, wird es Ihnen nicht mitgeteilt. Die Meldung „Fehlende dSYM“-Datei wird einfach weiterhin angezeigt. Sie müssen sicherstellen, dass Sie die richtige dSYM-Datei hochladen, um richtig zu symbolisieren.

Weitere Informationen finden Sie hier und lesen Sie die offizielle Fabric-Dokumentation dazu.


Beantwortet von –
Nathan F.


Antwort geprüft von –
Marie Seifert (FixError Admin)

0 Shares:
Leave a Reply

Your email address will not be published. Required fields are marked *

You May Also Like