Zendesk SDK Integration for Support in Mobile App

NOVASOLUTIONS.TECHNOLOGY 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 1 servicesAll 1735 services
Zendesk SDK Integration for Support in Mobile App
Medium
~2-3 business days
FAQ
Our competencies:
Development stages
Latest works
  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    756
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    624
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1052
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    947
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    862
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    445

Integrating Zendesk SDK for Mobile App Support

Zendesk SDK gives users access to live chat and ticketing directly from the app. But integration takes more than a day—not due to SDK complexity but due to initialization subtleties, conflicts with other dependencies, and customization to fit the product's design system.

Zendesk SDK Architecture

Zendesk offers two independent SDKs:

  • Zendesk SDK (Support)—create tickets, view request history
  • Zendesk Chat SDK—real-time live chat with agent
  • Zendesk Messaging (recommended for new projects)—combines chat and tickets, works via Sunshine Conversations

For most new integrations, we recommend Messaging SDK—it replaces both previous options and supports push notifications about new agent replies.

iOS Integration (Swift)

// AppDelegate or @main App
import ZendeskSDKMessaging
import ZendeskSDK

func application(_ application: UIApplication,
    didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {

    Zendesk.initialize(
        withAppId: "YOUR_APP_ID",
        clientId: "YOUR_CLIENT_ID",
        zendeskUrl: "https://yoursubdomain.zendesk.com"
    )
    Messaging.initialize(with: Zendesk.instance!)
    return true
}

Opening chat:

let messagingViewController = Messaging.instance?.messagingViewController()
present(messagingViewController!, animated: true)

Initialization issue. If Zendesk.initialize is called off the main thread—the SDK crashes with a Thread Checker warning and sometimes a cold start crash. Initialize only on main thread.

User Identification

For logged-in users, pass JWT token instead of anonymous session:

Zendesk.instance?.setIdentity(
    .jwtWithToken(token: userJwtToken)
)

JWT token generated on backend with standard claims: sub (user ID), email, name. Without identification, the agent sees an anonymous user and can't link chat to account history.

Android Integration (Kotlin)

// Application.onCreate()
Zendesk.initialize(this,
    appId = "YOUR_APP_ID",
    clientId = "YOUR_CLIENT_ID",
    zendeskUrl = "https://yoursubdomain.zendesk.com"
)
Messaging.initialize(Zendesk.instance)
// Open support screen
val intent = Messaging.instance!!.getMessagingActivity(context)
startActivity(intent)

ProGuard Conflict. Zendesk SDK requires specific keep rules. Without them—app crashes on opening chat in release build with ClassNotFoundException. Current rules are in official documentation, but AGP sometimes doesn't apply them automatically via consumerProguardFiles.

# proguard-rules.pro
-keep class zendesk.** { *; }
-keep class com.zendesk.** { *; }

Push Notifications for New Agent Replies

User closed the app—notify about new reply:

// iOS: register token with Zendesk
func application(_ application: UIApplication,
    didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
    Zendesk.instance?.pushNotificationsProvider?.register(
        deviceToken: deviceToken,
        locale: Locale.current.languageCode ?? "en"
    )
}

Zendesk sends push through its own service—no need to configure a separate server mechanism. But APNS certificate or p8 key must be added to Zendesk Admin Console → Channels → Mobile SDK.

UI Customization

Zendesk Messaging SDK provides limited customization via MessagingConfiguration. For fully custom UI—look into Sunshine Conversations REST API: fetch history through API, render yourself, send messages via webhook.

Timeline Estimates

Basic integration with chat and push—2–4 days. JWT identification setup, custom UI, and push testing on iOS and Android—up to 1 week.