
Thoughts on Android, Kotlin, and building real things.
Deep dives into mobile engineering, cross-platform architecture, and the journey of a senior software developer.

Deep dives into mobile engineering, cross-platform architecture, and the journey of a senior software developer.
A practical guide to sharing business logic across Android and iOS using Kotlin Multiplatform.
Khuram
Mar 18, 2026 · 5 min read
Kotlin Multiplatform (KMP) lets you share business logic between Android, iOS, and other platforms while keeping native UI.
Start by adding the KMP plugin to your Gradle build...
plugins {
kotlin("multiplatform")
}Create a shared module with commonMain, androidMain, and iosMain source sets.
Understanding remember, rememberSaveable, ViewModel state, and when to use each in Compose.
Khuram
Mar 18, 2026 · 7 min read
No comments yet. Be the first to share your thoughts!