kotlin-multiplatform
Installation
SKILL.md
Kotlin Multiplatform — Shared Business Logic for Mobile
Overview
Kotlin Multiplatform (KMP), JetBrains' technology for sharing code between Android, iOS, web, and desktop applications. Helps developers build shared business logic, networking, and data layers in Kotlin while keeping UI native on each platform.
Instructions
Project Structure
my-kmp-app/
├── shared/ # Shared Kotlin code
│ └── src/
│ ├── commonMain/ # Platform-independent code
│ │ └── kotlin/com/example/
Related skills