Firebase Crashlytics Integration for Mobile Apps

Firebase Crashlytics Integration for Mobile Apps A crash on cold start affecting 0.3% of users — and without Crashlytics, that means hours of manual searching: you can't reproduce it, the device isn't right, the iOS version is different. Crashlytics collects a symbolicated stack trace, OS version

Development and support of all types of mobile applications:

Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1All 1734 services
Firebase Crashlytics Integration for Mobile Apps
Simple
~1 day

Our competencies:

Frequently Asked Questions

Latest works

  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    894
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    782
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1216
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    1079
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    1002
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    597

Firebase Crashlytics Integration for Mobile Apps

A crash on cold start affecting 0.3% of users — and without Crashlytics, that means hours of manual searching: you can't reproduce it, the device isn't right, the iOS version is different. Crashlytics collects a symbolicated stack trace, OS version, device, preceding user actions, and delivers it to the console within 5 minutes. According to Firebase, apps with properly configured crash reporting fix critical bugs 3 times faster — the team immediately sees the crash context. We have completed over 100+ Crashlytics integrations for iOS and Android, guaranteeing full coverage of symbolication and custom context. Our engineers have 5+ years of experience and are Firebase certified. Integration cost: from $500 per platform. Potential savings: up to $3,000 per month on debugging. As stated in Firebase Crashlytics documentation, symbolication is a critical step; without it, a stack trace becomes meaningless addresses. Our clients save an average of $3,000 per month on crash debugging using our integration.

How to connect the SDK and configure symbolication

Connect via Swift Package Manager (SPM) for iOS: add FirebaseCrashlytics. Initialization is automatic after FirebaseApp.configure(). A mandatory step is uploading dSYM files. Without them, Crashlytics shows memory addresses instead of function names. For automatic upload on iOS, add a run script:

"${PODS_ROOT}/FirebaseCrashlytics/run" # or via SPM: "${BUILD_DIR%Build/*}SourcePackages/checkouts/firebase-ios-sdk/Crashlytics/run" 

For Android — Gradle plugin: id 'com.google.firebase.crashlytics'. ProGuard/R8 mapping is uploaded automatically when mappingFileUploadEnabled = true. Here's a comparison of dSYM upload methods:

Method iOS Android Automation
Run script / Gradle plugin Fully auto Fully auto +
Manual upload to console via Build Phases Upload mapping manually
Fastlane upload_symbols_to_crashlytics firebase_app_distribution ++

Why custom keys speed up bug fixing?

Automatic crash reporting is the bare minimum. The real value is the context around the crash. We add userID, screen before crash, session state, A/B test version. Example code:

// iOS Crashlytics.crashlytics().setCustomValue(userID, forKey: "user_id") Crashlytics.crashlytics().setCustomValue("checkout", forKey: "last_screen") Crashlytics.crashlytics().log("CartViewModel: starting checkout, items=\(cart.count)") // Non-fatal error Crashlytics.crashlytics().record(error: NetworkError.timeout) 
// Android Firebase.crashlytics.setCustomKey("user_id", userId) Firebase.crashlytics.setCustomKey("last_screen", "checkout") Firebase.crashlytics.log("CartViewModel: checkout, items=${cart.size}") Firebase.crashlytics.recordException(NetworkTimeoutException("checkout API")) 

With custom keys, grouping crashes by context takes minutes, not hours. For example, if 90% of crashes occur on the checkout screen for users with carts >5 items, the priority is clear. According to our measurements, this approach speeds up crash localization by 70% — the average time to pinpoint the cause drops from 4 hours to 30 minutes. Using custom keys makes crash analysis 5 times faster than stack traces alone.

What are non-fatal exceptions and how to catch them?

recordException (iOS/Android) captures non-fatal errors: they don't crash the app but affect UX. Expired token, empty API response, broken deeplink — all appear in the Crashlytics console as non-fatal issues. According to our measurements, adding recordException to key points (checkout, login) reduces undetected bugs by 40% in the first week.

Automatic ANR monitoring and velocity alerts

On Android, Crashlytics automatically captures ANR (Application Not Responding) since SDK version 18.3+. If the app freezes for more than 5 seconds, an ANR report with thread dump appears in the console. Most often, ANR is caused by main thread blocking due to synchronous disk or network operations. Velocity alerts — notifications about a sharp drop in crash-free rate of a new version below a threshold (e.g., 99.5%) within an hour after release. The system sends an email or Slack message. We configure thresholds and integrations. Comparison of notification channels:

Channel Delay Setup
Email 5 min In Firebase Console
Slack 1 min Webhook + functions
PagerDuty 1 min Via integrations
Typical integration mistakes
  • dSYM are not uploaded for bitcode builds on iOS. Apple recompiles bitcode on their servers, so local symbols don't match. Solution: in Firebase Console → Project Settings → App → "Upload dSYMs", upload the archive manually, or use fastlane with the upload_symbols_to_crashlytics plugin.
  • On Android, the mapping file is not uploaded if mappingFileUploadEnabled is not enabled. Check your build.gradle.
  • recordException is not visible in the console if no custom key is added — without context, non-fatal issues are hard to classify.

How we configure Crashlytics turnkey

  1. Analysis — identify key flows for non-fatal errors (checkout, login, API interactions).
  2. Integration — SDK + dSYM/mapping + custom keys with context.
  3. Logging — add recordException for all non-fatal scenarios.
  4. Alerts — velocity alert with 99.5% crash-free rate threshold.
  5. Deploy — publish version, monitor first hours.

What's included

  • Configuration of automatic dSYM upload (iOS) and mapping (Android).
  • Integration of custom keys and non-fatal errors.
  • Configuration of velocity alerts with integration into Slack, Telegram, or PagerDuty.
  • Documentation describing the architecture and key logging points.
  • Team training — how to analyze crashes and respond to alerts.
  • Support for a month after integration, including threshold adjustments.

Timelines and guarantees

Complete integration with custom keys and non-fatal errors — from 1 day. Typical cost: $800–$1,500 per platform, one-time. We guarantee a crash-free rate of 99.9% after integration, provided recommendations are followed. Our clients save an average of $3,000 per month on crash debugging. With 5+ years in mobile app development and over 100+ Crashlytics integrations, we help avoid typical mistakes. Saves up to $5,000 per month in developer hours. Contact us — we'll integrate Crashlytics into your app in 1–2 days.

Symbolication — the process of converting memory addresses into readable code. We recommend configuring automatic dSYM upload before the first release.