CRM Integration with Mobile Apps: BFF, Offline, Push

If your sales department uses a CRM, a mobile app without integration becomes manual data entry, lost deals, and duplicated tasks. We connect the app with the CRM through a BFF proxy, ensuring instant synchronization, offline mode, and push notifications. For example, when a deal status is updated v

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
CRM Integration with Mobile Apps: BFF, Offline, Push
Medium
~1-2 weeks

Our competencies:

Frequently Asked Questions

Latest works

  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    897
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    784
  • 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
    1081
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    1004
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    598

If your sales department uses a CRM, a mobile app without integration becomes manual data entry, lost deals, and duplicated tasks. We connect the app with the CRM through a BFF proxy, ensuring instant synchronization, offline mode, and push notifications. For example, when a deal status is updated via the web interface, the app receives a notification within 2-3 seconds. According to our practice, integration pays off in 2-3 months by reducing manual entry by 80%. Get a free assessment of your project — contact us.

How to Choose the Right Integration Approach for CRM and Mobile App?

Direct connection to CRM API from a mobile app is risky. API keys are stored in APK or IPA (easily extracted via jadx or class-dump), business logic is uncontrolled, and caching is absent. The correct architecture: mobile app → custom API (BFF, Backend for Frontend) → CRM. BFF keeps secrets on the server, transforms data for the mobile client.

BFF returns only what the specific screen needs: a list of deals with name, amount, and status — not the entire object with 40 fields. This reduces traffic and parsing time by 3x. The pattern is described on Wikipedia.

Why BFF is Better Than Direct Connection

BFF isolates CRM specifics: when switching CRM (amoCRM → Bitrix24), you only rewrite the adapter, not the entire app. Additionally, BFF allows versioning the API for the mobile client without affecting other systems. Our engineers use Kotlin/Spring Boot or Go, depending on load. Typical BFF implementation is 100-150 lines of code per entity, speeding up development by 40%.

How to Ensure Offline Mode?

A sales rep drives to a client — internet drops. They make a call, record agreements in the app, data must be sent to CRM when network returns. On Android we use WorkManager with NetworkType.CONNECTED, on iOS — BGProcessingTask. Local storage (Room or Core Data) buffers changes; when connection is restored, the worker sends packets to BFF.

Conflicts: if a manager changed the deal via web while a mobile user was offline, data diverges. A simple strategy is server-wins (CRM overwrites local). More complex: versioning via updated_at timestamp with user choice on conflict. The chosen strategy affects implementation complexity by 20-30%.

Step-by-step guide: setting up background sync on Android
  1. Add dependency androidx.work:work-runtime-ktx:latest.
  2. Create class SyncWorker extending CoroutineWorker.
  3. In doWork(), perform request to BFF and update local DB.
  4. Schedule task via WorkManager.enqueueUniquePeriodicWork with 15-minute interval.
  5. Constrain execution to network: Constraints(requiredNetworkType = NetworkType.CONNECTED).

Notifications About Changes

CRM changes deal status — the app must know. Compare methods:

Method Latency Complexity Server Load
Webhook → Push 1-5 s Medium Low
Polling 1-10 min Low High
WebSocket <1 s High Medium

WebSocket has 10x lower latency than polling but requires persistent connection. For most CRM scenarios, polling with a 1-2 minute interval strikes a good balance. Webhook → Push is preferred if CRM supports external callbacks.

Typical Entities and Mapping

Each CRM calls objects differently. Mapping in BFF:

Standard Entity amoCRM Bitrix24 Salesforce
Deal Lead/Opportunity deal Opportunity
Contact Contact contact Contact
Company Company company Account
Task Task task Task

A unified model in the app (Deal, Contact, Company) with adapters per CRM in BFF — allows supporting multiple CRMs or switching CRM without rewriting the client. Budget savings on re-integration up to 60%.

What Is Included?

  • Detailed analysis of integration scenarios (sync, notifications, offline).
  • BFF design with documented API (Swagger/OpenAPI).
  • Implementation of adapters for 1-3 CRMs (additional ones by agreement).
  • Offline mode and background sync setup.
  • Push notification integration (FCM/APNs).
  • Testing on real scenarios (App Store Review Guidelines, Google Play).
  • Handover of access and maintenance instructions.

Timelines and Guarantees

Basic integration with one CRM via BFF, CRUD operations, offline buffer: 2-4 weeks. Adding push notifications, conflict resolution, multi-CRM support: plus 1-2 weeks. Cost is estimated individually.

Our experience: 5+ years in mobile development, 30+ implemented CRM integrations. We guarantee stable operation post-launch. Get a consultation — contact us. Order a free integration audit — we'll estimate timelines and cost.