Reputation: 51
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
Reputation: 5634
use these:
/path/to/GoogleService-Info.plist : No such file or directory
/path/to/dSYMs : No such file or directory
Upvotes: 0