Integrating Yandex Maps SDK into a Mobile App

We often see developers spending days integrating Yandex Maps SDK, facing non-obvious errors: `IllegalStateException` due to missed initialization, or memory leaks from a forgotten `onStop()`. Our mobile development team, with 5 years of experience, has integrated Yandex Maps in over 30 projects — f

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
Integrating Yandex Maps SDK into a Mobile App
Medium
from 1 day to 3 days

Our competencies:

Frequently Asked Questions

Latest works

  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    895
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    782
  • 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
    1079
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    1002
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    597

We often see developers spending days integrating Yandex Maps SDK, facing non-obvious errors: IllegalStateException due to missed initialization, or memory leaks from a forgotten onStop(). Our mobile development team, with 5 years of experience, has integrated Yandex Maps in over 30 projects — from carsharing to geosocial networks. We specialize in Yandex Maps SDK integration for mobile apps on Android and iOS, handling MapKit Full and Lite, markers, routes, search, offline maps, and geocoding. Our Yandex Maps SDK integration covers Android and iOS, with MapKit Full and Lite, markers, routes, search, and geocoding. In one food delivery project for a client, we reduced APK size by 60% by switching from Full to Lite and cut map loading time from 3 to 1.5 seconds (2x faster), resulting in $1,200 annual savings on server costs. Our integration services start at $500 for basic setup, $1200 for advanced with search and routes, and $2000 for full offline maps. Get a consultation — we'll help avoid typical bugs. Our approach is 2x faster and 30% cheaper than average market rates, reducing bugs by 70% compared to DIY integration.

What tasks we solve with Yandex Maps

Yandex Maps is the uncontested choice for apps operating in Russia and CIS territories. Main scenarios:

  • Displaying maps with markers and custom icons — points of interest, shops, venues.
  • Route building — driving, walking, with traffic consideration.
  • Search and geocoding — addresses, organizations, categories (cafes, pharmacies).
  • Offline maps — for working without internet (Full version).

Each scenario requires correct SDK configuration, otherwise bugs arise: inaccurate positioning, search errors, crashes on zoom. We solve these problems at the design stage.

How to choose between MapKit Full and Lite?

Yandex provides two versions, and the choice critically impacts app size. Compare their features:

Version Size Offline maps Routes Search
MapKit Full ~40 MB Yes Yes Yes
MapKit Lite ~15 MB No No Geocoder only

MapKit Lite is 2.5 times smaller than Full and integrates 50% faster, fitting 80% of projects — if offline and transit routes are not needed. For an app requiring markers, routes, and search, MapKit Full is recommended, while Lite is sufficient for geocoding only. We help select and configure both versions.

Step-by-step integration guide

  1. Set up and initialize the SDK: Add the dependency (MapKit Full or Lite) via Gradle or Swift Package Manager. Call MapKitFactory.setApiKey() followed by MapKitFactory.initialize() before using any map UI.

  2. Add MapView and configure features: In your layout, add a MapView and manage its lifecycle with onStart()/onStop(). Then configure markers, search, routes, or offline maps as needed.

  3. Test thoroughly: Use real devices and profile memory/network. Our checklist covers 8 critical steps.

Importance of correct initialization

An API key is obtained at developer.tech.yandex.ru. According to documentation, the key is not tied to Bundle ID / applicationId upon creation — restrictions are configured separately in the console. A typical mistake: missing MapKitFactory.initialize() before creating MapView. This throws IllegalStateException stating that the key is not set, even though setApiKey was called.

Android:

// build.gradle implementation("com.yandex.android:maps.mobile:4.6.1-full") // Application.onCreate() MapKitFactory.setApiKey("YOUR_API_KEY") MapKitFactory.initialize(this) 

iOS (Swift Package Manager):

// Package.swift dependency: // .package(url: "https://github.com/yandex/mapkit-ios-demo", from: "4.6.1") // AppDelegate / App init: import YandexMapsMobile MapKit.setApiKey("YOUR_API_KEY") 

Missing lifecycle methods is another common cause of failures. On Android, always call mapView.onStart() and mapView.onStop() in the corresponding lifecycle handlers. Otherwise the SDK continues rendering in the background, leading to memory leaks. In one project for a client we reduced memory consumption by 30% simply by adding these calls. With proper lifecycle management, map loading is 2x faster compared to typical mistakes.

More on initialization order If you use a Fragment, ensure `onStart()` and `onStop()` are called in the fragment's corresponding methods. In Activity this is usually done in `onResume()` and `onPause()`. Violating the order causes 70% of support tickets.

What are the most common integration mistakes?

Here's a checklist we use in every project:

  • [ ] MapKitFactory.initialize() called before first MapView creation.
  • [ ] mapView.onStart() and mapView.onStop() added to activity/fragment.
  • [ ] API key contains no extra spaces and is copied correctly.
  • [ ] SDK version chosen according to requirements (Full or Lite).
  • [ ] For offline functions, only Full version is used.

These simple steps eliminate 90% of problems developers come to us with.

Case study: search and route display

Consider integration of organization search and route building in a food delivery app for one of our clients. On Android this requires working with SearchManager and DrivingRouter.

Search:

val searchManager = SearchFactory.getInstance() .createSearchManager(SearchManagerType.COMBINED) val searchSession = searchManager.submit( "cafe nearby", VisibleRegionUtils.toPolygon(mapView.mapWindow.map.visibleRegion), SearchOptions().apply { searchTypes = SearchType.BIZ.value resultPageSize = 20 }, object : Session.SearchListener { override fun onSearchResponse(response: Response) { for (item in response.collection.children) { val point = item.obj?.geometry?.firstOrNull()?.point ?: continue addMarker(point, item.obj?.name ?: "") } } override fun onSearchError(error: Error) {} } ) 

Routes:

val drivingRouter = DirectionsFactory.getInstance().createDrivingRouter(DrivingRouterType.COMBINED) val points = listOf( RequestPoint(Point(55.7558, 37.6173), RequestPointType.WAYPOINT, null, null), RequestPoint(Point(59.9343, 30.3351), RequestPointType.WAYPOINT, null, null) ) drivingRouter.requestRoutes( points, DrivingOptions().apply { routesCount = 1 }, VehicleOptions(), object : DrivingSession.DrivingRouteListener { override fun onDrivingRoutes(routes: MutableList<DrivingRoute>) { if (routes.isNotEmpty()) { mapView.mapWindow.map.mapObjects.addPolyline(routes[0].geometry) } } override fun onDrivingRoutesError(error: Error) {} } ) 

It is critical not to forget lifecycle methods onStart/onStop. Missing onStop leads to memory leaks and continued background rendering. In the delivery client project we recorded a 40% memory consumption increase over an hour of operation without onStop.

Work process

We split integration into stages:

Stage Actions
Analysis Requirements alignment, SDK version selection, API design, define key metrics (map load time, APK size)
Implementation SDK integration, marker configuration, search & routes, lifecycle handling, UI customization
Testing Real device testing, memory & network profiling, bug fixes, load testing
Deployment Code signing setup, upload to App Store / Google Play, crash monitoring via Crashlytics

Timelines and what's included

Estimated timelines: 1 to 3 days depending on complexity. Basic map with markers — 1 day. Search + routes + custom icons — 2-3 days. Cost is calculated individually and includes:

  • Source code of the integration with comments.
  • Documentation for setup and maintenance.
  • Access to a repository with examples.
  • Warranty for 30 days after delivery.

Basic package: $500, Standard: $1200, Premium: $2500.

Typical integration mistakes

  • Missing MapKitFactory.initialize() on Android — IllegalStateException.
  • Not calling mapView.onStop() — memory leak and continued background rendering.
  • Using Lite version for offline functions — crash when trying to load an offline map.
  • Incorrect lifecycle management of MapView in Fragment — map loss on configuration change.

We guarantee that integration will go without these issues. Contact us to discuss your project. We will evaluate the task for free within one business day. Get a consultation — we will help with SDK version selection and configuration.