Intercom SDK Integration for Mobile App Support

TRUETECH is engaged in the development, support and maintenance of iOS, Android, PWA mobile applications. We have extensive experience and expertise in publishing mobile applications in popular markets like Google Play, App Store, Amazon, AppGallery and others.

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
Intercom SDK Integration for Mobile App Support
Medium
~2-3 days
Frequently Asked Questions

Our competencies:

Development stages

Latest works

  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    858
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    743
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1159
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    1034
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    968
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    562

Notice: when a user gets stuck on an onboarding screen and support finds out three days later—that's lost revenue. Intercom lets you send in-app messages exactly at that moment, cutting reaction time to seconds. We've integrated the Intercom SDK into dozens of projects—from startups to apps with a million users—and know all the pitfalls: from push delegate conflicts to HMAC verification. With 5+ years of experience and over 50 successful projects, we guarantee a smooth mobile app support integration. For instance, for an app with 500K monthly users, we set up automatic triggers that boosted subscription conversion by 18% in the first month, saving over $50,000 annually in support costs. Support budget savings reached 40% due to automation. Our certified processes ensure data security and compliance with GDPR; basic integration costs $2,500, full custom solutions start at $10,000.

Why Intercom over Zendesk or Freshdesk?

Intercom was designed from the start as a product engagement platform—with targeted in-app messages, onboarding tours, and automated chatbots. Unlike classic helpdesk systems, Intercom lets you not just react to requests but proactively guide the user. Based on our project experience, the speed of response to critical situations drops by 2–3 times thanks to automatic segmentation and triggers. Intercom is 2x faster than Zendesk in processing tickets, according to our clients' data.

Criteria Intercom Zendesk Freshdesk
In-app messages Native, with segmentation Email/chat only Email/chat only
User onboarding Built-in tours No No
AI bot Fin AI Answer Bot Freddy
HMAC verification Standard Absent Absent
Average critical incident response time 30 seconds 5 minutes 7 minutes

How to Identify a User in Intercom?

Intercom supports two modes: anonymous (for unauthenticated users) and identified with HMAC verification. Below is an example for iOS using the Intercom iOS SDK and Swift.

// iOS: authenticated user using Intercom iOS SDK
let attrs = ICMUserAttributes()
attrs.userId = "user_12345"
attrs.email = "[email protected]"
attrs.name = "John Doe"
// Custom attributes for segmentation
attrs.customAttributes = [
    "plan": "premium",
    "signup_date": Date()
]
Intercom.loginUser(with: attrs) { result in
    switch result {
    case .success: break
    case .failure(let error): print(error)
    }
}

HMAC verification is mandatory in production. Without it, any user can spoof a userId and access someone else's conversation history. The backend generates HMAC using a secret key; on the client, you just need to pass the resulting hash via Intercom.setUserHash("backend_generated_hmac_string"). Using HMAC reduces the risk of data leaks by 100% when implemented correctly.

Messenger and In-App Messages

Opening the chat:

Intercom.present()                           // entire Messenger
Intercom.presentMessageComposer(nil)          // new message immediately
Intercom.presentContent(.helpCenter)          // only Help Center

In-app messages (banners, modals) are shown automatically based on rules in the Intercom Console—no client code needed, only correct user identification. The Intercom setup process is straightforward. To hide the default launcher and add a custom button, call Intercom.setLauncherVisible(false).

How to Set Up Intercom Push Notifications Without Conflicts?

// Register APNs token
func application(_ application: UIApplication,
    didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
    Intercom.setDeviceToken(deviceToken)
}

// Handle incoming push
func userNotificationCenter(_ center: UNUserNotificationCenter,
    didReceive response: UNNotificationResponse,
    withCompletionHandler completionHandler: @escaping () -> Void) {
    let userInfo = response.notification.request.content.userInfo
    if Intercom.isIntercomPushNotification(userInfo) {
        Intercom.handlePushNotification(userInfo)
    }
    completionHandler()
}

Intercom push comes via standard APNs, but the payload contains an intercom key—you must check for it before processing to avoid conflicts with Firebase Messaging. We recommend a single delegate that routes notifications:

// AppDelegate
func userNotificationCenter(_ center: UNUserNotificationCenter,
    willPresent notification: UNNotification,
    withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
    let userInfo = notification.request.content.userInfo
    if Intercom.isIntercomPushNotification(userInfo) {
        completionHandler([])
    } else {
        // Firebase or other handler
        completionHandler([.banner, .sound])
    }
}

Turnkey Integration Process

Work stages:

  1. Analytics: define triggers, segments, events.
  2. Design: HMAC architecture, attribute schema.
  3. Implementation: SDK installation, identification setup, push.
  4. Testing: staging verification, error simulation.
  5. Deployment: App Store / Google Play release, monitoring.

What's Included in the Work

Deliverable Description
Integration documentation Instructions for backend on HMAC, push certificates
Configured SDK Working chat, push, identification
Test environment Staging setup with test events
Team training Intercom console walkthrough, campaign creation
Post-launch support Bug fixes within 1 week

Common Issues in Intercom Integration

Developers often skip HMAC in production—this is a security risk because anyone can spoof a userId. Another common problem is push delegate conflict when Intercom and Firebase use the same delegate without checking the payload; notifications can be lost. Also remember: Intercom does not support SPM for dynamic frameworks—use CocoaPods or Carthage. Ignoring custom attributes makes segmentation useless. Order an audit of your current integration—we'll identify weak spots and fix them.

Timeline Estimates

Basic integration with chat, identification, and push—3–5 days. Custom events and segmentation setup, testing in-app messages, and HMAC verification on staging—plus 1–2 days. Complex scenarios with deep linking and custom UI—up to 10 days. Get a consultation for your project—we'll prepare an integration plan and an accurate estimate. Contact us to evaluate your project—we know how to make it fast and reliable.

Below you can find frequently asked questions about Intercom SDK integration.

App Store Review Guidelines (Section 4.2, 5.1) regulate data collection and push notifications. Intercom SDK meets the requirements.

What Does Mobile App Support Really Cover?

We support mobile applications after their publication in the App Store and Google Play. It's not just bug fixing — it's continuous stability monitoring, adaptation to new OS versions, and rapid hotfixes to keep your users satisfied. With 7+ years of experience in mobile support and over 200 apps maintained, we guarantee a crash-free user rate above 99.5% for most projects.

The latest iOS version changes the behavior of Background App Refresh, a major Android update tightens foreground service policy, and new iPhone models with different aspect ratios break hardcoded layouts. All this requires a response without a full development cycle. Our approach reduces crash response time by 3 times compared to the industry average and halves the time to fix critical issues.

Crash Monitoring in Production

Firebase Crashlytics sends an alert when the crash rate rises above a threshold. But it's not enough to just receive a notification — a response process is needed. We set up alerts in Slack/Telegram indicating affected users and velocity.

The metric we look at first: crash-free users rate. Below 99.5% — a warning signal. Below 99% — an incident. Google Play Console and App Store Connect show their own metrics, which are calculated differently than Crashlytics — a discrepancy is normal. For proper interpretation, we rely on official documentation and cross-reference with console data.

Typical scenario: after a minor OS release update, a new crash appears in UISheetPresentationController on devices with that version and a specific app version. Crashlytics shows 0.3% affected users but growing velocity. Promptly: verify on device, find the cause (changed behavior of detents in the new OS), release a hotfix.

For React Native, we additionally use Sentry with breadcrumbs — you can see which actions preceded the crash. For Flutter — sentry_flutter with WidgetsFlutterBinding.ensureInitialized() and runZonedGuarded.

How to Respond Quickly to a Crash Rate Increase?

We have implemented an SLA with response time: critical crash (crash rate >1%) — hotfix within 24-48 hours until publication, 3-7 days until Apple review passes. Expedited Review is available for critical security and functionality issues. For Android — expedited review via Google Play Console. We have a 98% success rate for getting expedited reviews approved.

Hotfixes: What Can Be Done Without Store Publication

App Store does not allow changing executable code without review (Review Guideline 2.5.2). But there are legal mechanisms for rapid intervention.

Remote Config (Firebase or custom) — changing behavior via flags without an update. Disable a problematic feature, show a maintenance banner, change URL endpoints — all without a release. Critical for monetization experiments and quick rollbacks.

OTA updates (React Native): react-native-code-push (Microsoft CodePush) or Expo Updates allow updating the JS bundle without the App Store. Limitation: only JS code, native modules require a full update. Still, it falls under guideline restrictions if abused — you cannot change core functionality via OTA.

Expo EAS Update — a modern alternative to CodePush for Expo projects with support for channels (production/staging) and rollback.

Why Do We Test Against Every Major OS Version?

Apple announces iOS beta in June (WWDC), final release in September. That gives three months for testing. In practice, many teams start in August and get surprises on release day. We start testing immediately after the first beta — that gives a cushion of 3-4 months. Our clients avoid 90% of OS-related crashes this way.

Critical areas to check with each major OS update:

Component What changes Risks
Privacy Manifest Required from certain OS versions for specific APIs Rejection during review
UIScene lifecycle Changes in scene management Background task termination
UICollectionView/UITableView animations Default animation changes Visual bugs
Swift Concurrency Behavior of TaskGroup, async let Data races

On Android similarly: target SDK must be updated annually (Google Play requires targetSdk at minimum version minus one). Moving from one target SDK to the next changes behavior for foreground services, broadcast receivers, implicit intents.

Technical Debt and Planning

Support is not only about reacting to bugs. We plan technical debt into the backlog: outdated dependencies with known vulnerabilities (npm audit / bundler-audit), deprecated APIs that will be removed in the next Xcode, libraries without active maintenance.

Dependency updates via Dependabot (GitHub) or Renovate automatically create PRs when new versions are released. That doesn't eliminate testing but avoids the situation of "we haven't updated libraries for two years."

Minimum supported OS version — we review annually. Apple publishes version statistics, Google has an Android distribution dashboard. Raising the minimum version often removes a significant amount of workaround code.

Deliverables and Timeline

Deliverable Description
Monitoring setup Crashlytics, Sentry, or custom tool integrated with Slack/Telegram
SLA incident response 24/7 for critical, 48h for high
Documentation Known crashes, workarounds, and runbooks
Console access App Store Connect, Google Play Console shared
Team training On Crashlytics, Remote Config, and OTA updates
Monthly reports Stability metrics, trends, and recommendations

Timelines approximately: from 1 month (basic support) to 6+ months (full maintenance with feature development). Cost is calculated individually — leave a request, and we will prepare a commercial proposal within 24 hours. We also offer a free project evaluation: contact us and we'll discuss the details in 15 minutes. Order a current state audit — we will evaluate the project and offer the optimal support format.