Your device's profiler shows a solid 60 FPS. Firebase Crashlytics reports zero crashes. Yet users flood support with "everything's laggy". Often after release, the gap between test and real conditions is huge: weak devices, slow networks, background processes. Firebase Performance Monitoring is the only way to see actual performance on user devices, not in a lab. Our service—integrating Firebase Performance Monitoring into your mobile app—solves this. This is a complete firebase performance integration service, providing mobile app performance monitoring with custom traces, network requests, app start time, slow frames, frozen frames, firebase alerts, and more. We specialize in iOS Android performance optimization and fps measurement. For firebase performance setup, we provide step-by-step guidance. Over 5 years, we've completed 20+ integrations for iOS and Android, helping clients reduce response times by 30%.
Why Standard Profilers Fall Short
Xcode or Android Studio profilers measure performance under ideal conditions: tethering, debug builds, powerful Mac or Pixel. A user runs the app on a Samsung Galaxy A10 with Android 10, weak battery, and background processes. Firebase Performance Monitoring collects data from production builds, showing real latencies. Comparison: data accuracy is 5 times higher than local profiling.
What Metrics Are Collected Automatically?
The Firebase Performance SDK automatically measures:
-
App start time — from
applicationDidFinishLaunching until the app becomes interactive.
-
Screen rendering — for each UIViewController on iOS and Activity/Fragment on Android: slow frames (>16 ms) and frozen frames (>700 ms).
-
Network requests — response time, request/response size, HTTP status for all requests via URLSession / OkHttp.
These metrics appear in the Firebase console without writing a single line of code.
Adding Custom Traces for Critical Operations
To measure a specific operation—say, loading a product catalog or processing a photo—create a custom trace. Here's the process:
- Name the trace, e.g.,
load_product_catalog.
- Set attributes for segmentation (API version, country, etc.).
- Start the trace before the operation, stop after.
- Optionally add metrics (number of items).
iOS / Swift:
import FirebasePerformance
func loadProductCatalog() async {
let trace = Performance.startTrace(name: "load_product_catalog")
defer { trace?.stop() }
trace?.setValue("v2", forAttribute: "api_version")
let products = await productRepository.fetchAll()
trace?.incrementMetric("product_count", by: Int64(products.count))
}
Android / Kotlin:
val trace = Firebase.performance.newTrace("load_product_catalog")
trace.start()
trace.putAttribute("api_version", "v2")
val products = productRepository.fetchAll()
trace.putMetric("product_count", products.size.toLong())
trace.stop()
Attributes (setValue/putAttribute) let you segment traces in the console—compare load times across different API versions or user countries.
Configuring Network Request Interception for Custom Stacks
Automatic interception works via URLSession swizzling on iOS. If your project uses a custom URLSession or Alamofire, register manually with HTTPMetric:
let metric = HTTPMetric(url: url, httpMethod: .get)
metric?.start()
URLSession.shared.dataTask(with: url) { data, response, error in
metric?.responseCode = (response as? HTTPURLResponse)?.statusCode ?? -1
metric?.stop()
}.resume()
For Alamofire, add an EventMonitor that wraps metrics around each request. From our experience, without proper network interception, you risk missing up to 30% of slow requests. This method spots anomalies 5 times faster than traditional testing.
What Segmentation Offers in the Console
The Firebase Performance console breaks down metrics by app version, country, device type, and OS version. This is the only way to know a specific screen lags only on Android 10 on budget devices. Metrics by segment:
| Metric |
Alert threshold |
Typical segmentation |
| App start time |
>2s — problem |
OS version, device |
| Slow frames |
>1% |
App version |
| Frozen frames |
>0.1% |
Country |
| Network request time |
p95 > 5s |
Endpoint |
Thresholds are set based on your app's benchmarks. For example, if p95 catalog load time exceeds 3s, it's a signal to optimize. We help set realistic boundaries so alerts aren't noisy.
Recommended Alert Thresholds
We suggest the following alert thresholds:
| Metric |
Threshold |
Action |
| App start time |
>2.5s |
Team notification |
| Slow frames >5% |
>5% |
Auto bug report |
| Frozen frames >0.5% |
>0.5% |
Immediate response |
| Network errors |
>1% |
Check server side |
Alerts can be sent to Slack, Telegram, or email. Setup takes 1–2 hours. For more capabilities, see the Firebase Performance Documentation.
What's Included and Timelines
We handle the full turnkey integration:
- SDK addition and basic initialization.
- Custom traces for key operations (data loading, heavy list rendering).
- Network request interception setup for non-standard stacks.
- Basic dashboard with alert thresholds.
- Guide on interpreting metrics.
We guarantee a smooth integration process and our team has over 5 years of certified experience. Typical integration costs range from $500 to $2000 depending on complexity, with savings on debugging time.
Timelines: basic integration with automatic traces — 1 day. With custom traces and network interceptor — 2 days. Cost is determined individually after analyzing your project.
The integration pays off by reducing debugging time and lowering support costs. Want to know where your app loses FPS? Contact us for a project assessment and a solution. Request a Firebase Performance Monitoring integration and get a real performance picture from user devices.
Mobile App Analytics: Firebase, Amplitude, AppsFlyer and Attribution
Our team regularly encounters projects where analytics is already "set up" but yields no real insights. A typical example is a startup with 50k DAU: tracking dozens of events without a single answer to the question "why don't users reach payment?". In two weeks we built a basic funnel and found that 70% of users drop off at the phone number verification screen. After fixing the bug, retention increased by 12%. The takeaway: analytics should start with specific questions, not tracking everything indiscriminately.
Why Event Taxonomy is the Foundation of Mobile App Analytics?
Firebase Analytics, Amplitude, Mixpanel — technically similar. The difference lies in what you put into them. A common mistake: events like screen_view, button_tap_1, button_tap_2 without context. A month later, no one remembers what button_tap_2 means.
Proper taxonomy: object + action + context. product_viewed, checkout_started, payment_completed with parameters product_id, category, price, source. This allows building funnels, cohort analysis, and retention without additional tracking.
We document the naming convention in a tracking plan — a document (Google Sheet or Amplitude Data Catalog) describing every event, its parameters, and triggering conditions. The tracking plan is synced with the analytics team before development begins, not after. This approach ensures that data remains interpretable months later and doesn't become a dump. Experience from 50+ projects confirms: without a tracking plan, analytics maintenance costs increase 2-3 times due to rework.
What Should You Choose for Mobile App Analytics: Firebase, Amplitude, or Mixpanel?
The table below highlights key differences between the three popular platforms. Choice depends on budget, traffic, and tasks.
| Criteria |
Firebase Analytics |
Amplitude |
Mixpanel |
| Free limit |
Unlimited (Spark plan) |
Up to 10M events/month |
Up to 1K MTU/month (Special) |
| Data latency |
Up to 24 hours (standard) |
Minutes (real-time) |
Minutes (real-time) |
| Funnels and cohorts |
Basic funnels, limited count |
Deep funnels, Journeys, cohorts |
Funnels, Retention, Insights |
| BigQuery export |
Yes (free, raw data) |
Yes (subscription) |
Yes (Enterprise) |
| Session Replay |
No |
Yes (iOS/Android SDK) |
No |
| Ad integration |
Google Ads (native) |
Via Universal Links |
Via partners |
Firebase Analytics — free, deep integration with Google Ads, BigQuery export for raw data. Limitations: data latency up to 24 hours, limited funnels. For startups with Google Ads traffic, it's the first choice.
Amplitude — product analytics focused on cohorts and user journeys. Journeys (formerly Pathfinder) shows actual paths between events — not assumed funnels but real routes. Session Replay records sessions for UX analysis. The free tier up to 10M events/month is enough for most products at launch.
Mixpanel — close to Amplitude, stronger in real-time segmentation. Insights, Funnels, Retention cover 90% of product analysts' tasks.
How to Solve Multi-Channel Attribution with AppsFlyer?
Knowing where a user came from is a separate task. Firebase Attribution works only within the Google ecosystem. For multi-channel attribution (Facebook Ads, TikTok, Apple Search Ads, programmatic), an MMP (Mobile Measurement Partner) is needed.
AppsFlyer is the market leader. OneLink — universal deep link working on iOS and Android, correctly attributing installs from any channel. Protect360 — built-in fraud protection (fake installs, click injection on Android). Adjust and Branch are competitors with similar features. Branch excels in deep linking; Adjust is popular in gaming.
According to Apple, with iOS 14.5, apps must obtain user permission via ATT before collecting IDFA for tracking. AppsFlyer uses probabilistic matching (IP + user agent + timing) for these users — accuracy is lower but better than nothing. SKAdNetwork and Privacy Preserving Attribution provide aggregated data from Apple with a 24-72 hour delay.
How to Set Up Crash Analytics to Not Miss Bugs?
Firebase Crashlytics is the standard for crash reporting. It automatically groups crashes by stack trace, shows affected users %, and sends velocity alerts when crash rate increases by more than 10% per hour.
Important: symbolication. On iOS, .dSYM files must be automatically uploaded with each build — via Fastlane upload_symbols_to_crashlytics or Xcode Cloud built-in. Without symbols, crashes in Crashlytics appear as memory addresses. This happens more often than expected when switching to a new CI — in one project with 500k users, we found that 40% of crashes remained unsymbolicated due to a missing CI/CD step. After automation, bug response time dropped from 3 hours to 15 minutes.
For React Native and Flutter, @sentry/react-native and sentry_flutter provide additional context: breadcrumbs, network requests before the crash, Redux/Provider state.
Below is a comparison of popular crash analytics tools to choose according to your needs.
| Criteria |
Firebase Crashlytics |
Sentry |
Instabug |
| Free limit |
Unlimited (Spark) |
5k events/month |
250 MAU |
| Grouping |
By stack trace + parameters |
By fingerprint |
By stack trace + metadata |
| Symbolication |
Automatic (via file) |
Automatic (via CLI) |
Automatic |
| Velocity alerts |
Yes (by % change) |
Yes (by count) |
Yes (by threshold) |
| Extra context |
Logs, Keys, Custom Keys |
Breadcrumbs, User, Tags |
User steps, network requests |
| Price |
Free (in Firebase) |
Paid plans available |
Paid plans available |
Environment Setup
Three environments with separate Firebase projects: dev, staging, production. Mixing analytics from test sessions and production is a common mistake that skews all metrics. On iOS via GoogleService-Info.plist per scheme, on Android via google-services.json in each flavor folder.
Timelines: basic analytics with Firebase + Crashlytics — 3-5 days. Full tracking plan + Amplitude/Mixpanel with funnels and cohorts — 2-3 weeks. Attribution via AppsFlyer with deep linking and fraud protection — 1-2 weeks. Cost is calculated individually based on integration complexity.
What Is Included in Our Work
As part of analytics implementation, we provide:
- Development and approval of a tracking plan with product and marketing teams.
- SDK integration (Firebase, Amplitude, Mixpanel, AppsFlyer) considering your stack (Swift/Kotlin/Flutter/React Native).
- Setup of funnels, cohorts, dashboards, and alerts.
- Automation of symbolication and .dSYM upload via Fastlane.
- Documentation of events and parameters.
- Team training on the analytics platform.
- Two weeks of post-release support and tracking adjustments.
Our experience: 7 years of analytics implementation and over 80 successful projects in mobile development. We guarantee data correctness and transparency at every stage.
Contact us for a consultation on setting up analytics for your app. Request an audit of your current analytics — and we will show you which metrics you are losing.