Cross-Platform Mobile App Development with Kotlin Multiplatform (KMM)

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
Cross-Platform Mobile App Development with Kotlin Multiplatform (KMM)
Complex
from 2 weeks to 3 months
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

Cross-Platform Mobile App Development with Kotlin Multiplatform

Kotlin Multiplatform reached Stable status in November 2023 — with KMP 1.9.20. This is not «write once — run everywhere» in Flutter's sense. KMP allows sharing business logic between iOS and Android while keeping native UI on each platform. Architecturally: common module in Kotlin compiles to JVM bytecode for Android and native framework via Kotlin/Native for iOS (xcframework through Gradle task assembleXCFramework).

Main consequence: no UI compromises — SwiftUI on iOS, Jetpack Compose on Android. No «same look on both platforms» — each platform looks native. Shared layer — only commonMain: network layer, business logic, domain models, local DB.

What goes to shared, what stays native

In commonMain: network requests via Ktor Client (io.ktor:ktor-client-core), serialization via kotlinx.serialization, local DB via SQLDelight (generates typed Kotlin API from SQL files), domain models, use cases, ViewModels via kotlinx.coroutines + StateFlow.

Stays native: UI entirely (SwiftUI / UIKit on iOS, Compose / XML on Android), camera access, biometrics, push notifications (APNs vs FCM), native payment SDKs. Native API access — via expect/actual mechanism: declare expect class PlatformSpecific in commonMain, write actual implementations in androidMain and iosMain.

Typical Kotlin/Native pain — multithreading. Before KMP 1.7.20 any object created in one thread couldn't be accessed from another — InvalidMutabilityException. With new MM (Memory Manager) in 1.7.20 this limitation is lifted, but legacy code may contain freeze() patterns now outdated. When auditing old KMP projects this is the first thing we check.

iOS integration

xcframework connected in Xcode via SPM (Swift Package Manager) or Cocoapods with pod 'shared'. SPM integration preferable with XCode 15+: binaryTarget in Package.swift with local path to xcframework. Framework update — ./gradlew assembleXCFramework in Gradle, then build in Xcode.

Calling suspend functions from Swift requires wrappers: Swift doesn't natively call Kotlin coroutines. Solution — KMMBridge from Touchlab or manual wrappers via Kotlinx.coroutines + CoroutineScope on Kotlin side, exporting callback-based API. With Kotlin 1.9.20 there's experimental @Throws + Swift async/await via kotlin.native.concurrent, but in production requires testing.

Case study. FinTech app: iOS (SwiftUI + Combine) and Android (Compose + Flow) share common business logic — credit limit calculation, form validation, caching via SQLDelight. Ktor Client configured with OkHttp engine on Android and Darwin (NSURLSession) engine on iOS. Common AuthInterceptor in commonMain adds JWT token to every request. Shared module tests — kotlin.test + runTest for coroutines. CI — GitHub Actions: ./gradlew :shared:allTests runs tests on JVM and via K/N test runner on iOS simulator.

SQLDelight vs Room vs Realm

DB Shared support API type Suitable for
SQLDelight Yes (commonMain) Typed Kotlin from SQL KMP projects
Room Android only DAO + Kotlin Android only
Realm Kotlin Yes (commonMain) Object-oriented Reactive apps

SQLDelight — our default choice for KMP: SQL schema is one, API generated for both platforms.

Timelines

Scope Approximate timeline
Shared business logic + native UI, MVP 10–16 weeks
Full product with offline 5–9 months
Existing Android app migration 3–6 months

Cost calculated individually. KMP requires team with competencies in both native platforms — this is key factor when estimating budget.