I want to add Crashlytics
to my app using the Swift package manager.
Now, since the usual way to install Firebase
is through CocoaPods
, the tutorial on how to set up Crashlytics
properly is also adjusted for CocoaPods
.
In other words - the run script we should copy from the tutorial is not compatible with SPM, as you can see here:
${PODS_ROOT}/FirebaseCrashlytics/run
So how can I find the file location of Crashlytics
using SPM to get the correct run script?
Thanks!