HomeiOS DevelopmentCombine Google Firebase Crashlytics in iOS app utilizing swift – iOSTutorialJunction

Combine Google Firebase Crashlytics in iOS app utilizing swift – iOSTutorialJunction


Firebase crashlytics SDK helps builders to get actual time crash stories of their apps. Crashlytics SDK logs down a crash and supply info to the developer the place precisely its coming from. This manner, developer can repair crash prevalence in app subsequent launch and make app extra secure 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 undertaking. Comply with the under given steps so as to add Firebase SDK to the undertaking.

  1. Go to https://console.firebase.google.com/
  2. Click on on Add undertaking.
  3. Enter undertaking identify.
  4. Hyperlink Google analytics to the undertaking.(Comply with the steps proven by Firebase console window)
  5. Choose present location(nation we’re residing in).
  6. Settle for situations and click on on create undertaking.
  7. Click on Proceed.
  8. A display screen with our undertaking dashboard will open up.
  9. Click on on iOS icon as we need to add Firebase SDK for iOS.
  10. Comply with the 5 steps, as described within the internet web page. (Be aware:- One can selected totally different set up strategies, however the beneficial one is through SPM(Swift Package deal Supervisor))

Utilizing Firebase Crashlytics SDK

Comply with under Steps:

  • Drag and drop GoogleService-Information.plist into the undertaking folder.
  • Open AppDelegate.swift and import Firebase, followe by configure command.
import UIKit
import Firebase

@important
class AppDelegate: UIResponder, UIApplicationDelegate {

    func software(_ software: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
        // Override level for personalization after software launch.
        FirebaseApp.configure()
        return true
    }
}
Add run script for Firebase crashlytics in xcode iOS
  1. Choose the undertaking in Undertaking Naviagtor
  2. Choose undertaking goal listed below TARGETS, in our case its ‘CrashlyticsDemo‘.
  3. Choose Construct Phases.
  4. Click on on + icon, then choose New Run Script Part.
  5. Beneath shell part add under run script
"${BUILD_DIR%/Construct/*}/SourcePackages/checkouts/firebase-ios-sdk/Crashlytics/run"

Be aware:- In case you are utilizing cocoa pods for set up, then it is advisable 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 routinely add debug symbols post-build.
Fore extra information examine this hyperlink: https://firebase.google.com/docs/ios/installation-methods

Subsequent steps is to add DYSM recordsdata. Within the Enter Information part, add the paths for the places of the next recordsdata:

  1. The situation of undertaking’s dSYM recordsdata:
${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Sources/DWARF/${TARGET_NAME}

As per documentation, offering the placement of your undertaking’s dSYM recordsdata allows Crashlytics to course of dSYMs for giant apps extra shortly.

2. The situation of your undertaking’s constructed Information.plist file:

$(SRCROOT)/$(BUILT_PRODUCTS_DIR)/$(INFOPLIST_PATH)

As per Firebase crashlytics documentation, offering the placement of your undertaking’s constructed Information.plist file allows Crashlytics to affiliate an app model with the dSYMs.

Lastly, below Construct Settings of TARGETS and PROJECT. Seek for Debug info format, and set it as “DWARF with DYSM file”.

Debug information format, and set it as DWARF with DYSM file  xcode ios firebase crashlytics

The place to go from right here

On this put up, we realized about how can we use Firebase crashlytics in iOS app utilizing swift language. Given benefits supplied by crashlytics to report crash inside app in a really descriptive manner, it’s a really needy factor to make use of within the cellular app.

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments