Firebase crashlytics SDK helps builders to get actual time crash experiences of their apps. Crashlytics SDK logs down a crash and supply data to the developer the place precisely its coming from. This manner, developer can repair crash incidence in app subsequent launch and make app extra steady to its customers. On this tutorial, we’re going to learn to combine Firebase Crashlytics SDK in our iOS app utilizing swift language.
Including Firebase SDK
Very first thing we have to add Firebase SDK and different dependencies to our challenge. Observe the under given steps so as to add Firebase SDK to the challenge.
- Go to https://console.firebase.google.com/
- Click on on Add challenge.
- Enter challenge title.
- Hyperlink Google analytics to the challenge.(Observe the steps proven by Firebase console window)
- Choose present location(nation we’re residing in).
- Settle for circumstances and click on on create challenge.
- Click on Proceed.
- A display with our challenge dashboard will open up.
- Click on on iOS icon as we wish to add Firebase SDK for iOS.
- Observe the 5 steps, as described within the internet web page. (Observe:- One can selected completely different set up strategies, however the advisable one is by way of SPM(Swift Package deal Supervisor))
Utilizing Firebase Crashlytics SDK
Observe under Steps:
- Drag and drop GoogleService-Data.plist into the challenge folder.
- Open AppDelegate.swift and import Firebase, followe by configure command.
import UIKit import Firebase @most important class AppDelegate: UIResponder, UIApplicationDelegate { func software(_ software: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // Override level for personalisation after software launch. FirebaseApp.configure() return true } }

- Choose the challenge in Venture Naviagtor
- Choose challenge goal listed beneath TARGETS, in our case its ‘CrashlyticsDemo‘.
- Choose Construct Phases.
- Click on on + icon, then choose New Run Script Section.
- Underneath shell part add under run script
"${BUILD_DIR%/Construct/*}/SourcePackages/checkouts/firebase-ios-sdk/Crashlytics/run"
Observe:- In case you are utilizing cocoa pods for set up, then you could add given under shell command
"${PODS_ROOT}/FirebaseCrashlytics/run"
The above scripts are required as crashlytics requires, app to add debug symbols. Run script construct section for Xcode will mechanically add debug symbols post-build.
Subsequent steps is to add DYSM recordsdata. Within the Enter Information part, add the paths for the places of the next recordsdata:
- The placement of challenge’s dSYM recordsdata:
${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Sources/DWARF/${TARGET_NAME}
As per documentation, offering the situation of your challenge’s dSYM recordsdata permits Crashlytics to course of dSYMs for big apps extra shortly.
2. The placement of your challenge’s constructed Data.plist
file:
$(SRCROOT)/$(BUILT_PRODUCTS_DIR)/$(INFOPLIST_PATH)
As per Firebase crashlytics documentation, offering the situation of your challenge’s constructed Data.plist
file permits Crashlytics to affiliate an app model with the dSYMs.
Lastly, beneath Construct Settings of TARGETS and PROJECT. Seek for Debug data format, and set it as “DWARF with DYSM file”.

The place to go from right here
On this publish, we discovered about how can we use Firebase crashlytics in iOS app utilizing swift language. Given benefits offered by crashlytics to report crash inside app in a really descriptive method, it’s a really needy factor to make use of within the cellular app.