catpawsonkeyboard
catpawsonkeyboard

Reputation: 51

Unable to manually upload dSYM file to Firebase Crashlytics 4.0.0+

I am running the latest Crashlytics pod on my iOS project and am no longer using Fabric. Since Firebase removed the option to upload a dSYM file I am stuck with figuring out how to upload my dSYM file manually.

My setup in Xcode is as followed:


My attempt to manually upload the file:


Issue:

My path I've set in terminal:

When I try to run the terminal with the path above, I get an error: /Desktop/MyFolder/MyAppFolder/Pods/FirebaseCrashlytics/upload-symbols: No such file or directory

I know my path to FirebaseCrashlytics is correct but I am not certain as to why I am unable to reach the upload-symbols path.

Is there is something I am missing?


Tried following guide on Firebase:

Tried solutions presented through these posts:

Upvotes: 0

Views: 1432

Answers (1)

Kasım Özdemir
Kasım Özdemir

Reputation: 5634

use these:

  • path of upload-symbols => /Users/yourhomefolder/Desktop/MyFolder/MyAppFolder/Pods/FirebaseCrashlytics/upload-symbols
  • path of plist => /Users/yourhomefolder/Desktop/MyFolder/MyAppFolder/GoogleService-Info.plist
  • /path/to/dSYMs : find path of dSYMs by following this answer => https://stackoverflow.com/a/11880813/8956604

/path/to/GoogleService-Info.plist : No such file or directory

/path/to/dSYMs : No such file or directory

Upvotes: 0

Related Questions