CarthageAs described in your document, we need to run Build Script but we cannot find FirebaseCrashlytics/run and FirebaseCrashlytics/upload-symbols under FirebaseCrashlytics.framework via Carthage

binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseCrashlyticsBinary.json" in your Cartfilecarthage updateHi @d-date - thanks for the report.
Check out the Carthage instructions and at the very bottom there's a section for Crashlytics specific instructions. Copied here:
- To automatically upload your app's symbols so your app's crashes are symbolicated, download
upload-symbols
and run.
Then follow the Crashlytics documentation
to add a new run script phase in your Xcode project.
There are packaging limitations we face with Carthage and Crashlytics so you'll have go grab the tools separately when using Carthage.
Let us know if this solves things for you!
I missed to read this document and get solved this issue.
Thank you for your help.
I missed to read this document and get solved this issue.
Thank you for your help.
could you please tell me where to put the upload-symbols as i'm stuck here
@ahmedelmoughazy you may put run and upload-symbols anywhere under your Xcode project directory, as long as the Run Script Build Phase points to it. It will help to use the ${PROJECT_DIR} macro in the Run Script Build Phase. Eg, for a project I'm using, I'm putting the tools in a scripts folder in my project directory:

So my Run Script Build Phase that I set up is "${PROJECT_DIR}/scripts/run":

@ahmedelmoughazy Don't forget to add appropriate input files on top of what @samedson provided you.
(I am talking about this one basically)
${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}
Thank you very much, it worked ! ...
Most helpful comment
Thank you very much, it worked ! ...