Jivo SDK Integration for Online Chat 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
Jivo SDK Integration for Online Chat in Mobile App
Simple
~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 Jivo SDK for Online Chat in Mobile Apps

Jivo is popular among Russian-speaking products: operators already work in web Jivo, and adding mobile chat means unified request queue without changing support tools. The SDK is relatively simple to integrate, but a few nuances consume time.

Installation and Initialization

iOS

# Podfile
pod 'JivoSDK'
// AppDelegate
import JivoSDK

func application(_ application: UIApplication,
    didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
    JivoSDK.shared.set(channelID: "your_channel_id")
    return true
}

Android

// build.gradle.kts
implementation("com.jivosite:sdk:3.x.x")
// Application.onCreate()
JivoSDK.init(this, "your_channel_id")

channelID taken from Jivo panel: Settings → Channels → Mobile App.

Opening Chat and Passing Client Data

// iOS: open chat
JivoSDK.shared.presentContactForm(over: viewController)

// Pass authenticated user data
JivoSDK.shared.setContactInfo(
    name: "Ivan Ivanov",
    email: "[email protected]",
    phone: "+79001234567",
    brief: "Plan: Premium, ID: 12345"
)

The brief field is visible to the operator as a "note"—useful for passing context: plan, order ID, last user action. The operator immediately understands who they're talking to.

Push Notifications

Jivo SDK supports push via APNs/FCM. For iOS, pass the token:

func application(_ application: UIApplication,
    didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
    JivoSDK.shared.setPushToken(deviceToken)
}

Push notifications in Jivo work only if an operator is active. If no operators online—push isn't sent. This is Jivo's architecture feature: not like other SDKs where push works independently.

Limitations

Jivo SDK provides less UI customization compared to Zendesk or Intercom. You can change header and accent colors, but full layout rebuild—no. With strict design system—clarify this at start.

Multilanguage: SDK supports Russian and English. For other languages—only partial localization via string overrides.

Timeline Estimates

Integration with chat, user data passing, and push—1–2 days. Cost calculated individually.