Wire encrypted key-value storage into a KMP project — a domain-specific SecureStorage contract, its multiplatform-settings implementation, and the hardware-backed engines (EncryptedSharedPreferences / Keychain) via DI. Use whenever the user stores tokens,…
MALPV/kmp-skills-plugin
SkillsMP has collected 9 skills from MALPV/kmp-skills-plugin. Open a skill to review its source and details.
- Latest recorded source activity
- SkillsMP catalog refreshed
- skills collected
- 9
- GitHub stars
- 4
- GitHub forks
- 0
Skills in this repository
Showing 9 of 9 collected skills.
Structure dependency injection in a Kotlin Multiplatform project with Koin — module organization by feature/layer, constructor DSL (singleOf/viewModelOf), the initKoin entry points and their Swift-friendly overload, and a verify() graph test. Use whenever the…
Wire the Ktor networking layer into a KMP project — dependencies, the shared HttpClient with auth/refresh and secure logging, per-platform engines, and the DTO→domain repository flow with MockEngine tests. Use whenever the user adds networking, consumes a…
Build type-safe navigation in a Compose Multiplatform app — @Serializable destinations, a centralized Actions controller, and a NavHost whose screens take callbacks instead of the NavController. Use whenever the user adds navigation, mentions NavHost, routes,…
Build the presentation layer of a KMP feature — ViewModels with viewModelScope, a single UiState per screen, session restore with offline handling, and Compose consumption via koinViewModel/collectAsStateWithLifecycle. Use whenever the user builds a screen's…
Wire a Room 2.7+ database into a KMP project — module build config with per-target KSP, entities/DAOs, the expect/actual builder, and single-source-of-truth repository integration. Use whenever the user adds local persistence, an offline cache or…
Structure a KMP project as a Gradle multi-module architecture by Features + Layers — the :shared aggregator, :core:* and :features:* modules, api-vs-implementation boundaries, and the Xcode framework export. Use whenever the user modularizes a project, splits…
Set up the dependency catalog and base Gradle config for a KMP project — a capability-grouped libs.versions.toml, the root/shared/androidApp build files, and dynamic Android SDK versions. Use whenever the user bootstraps a KMP project, adds a library or…
Design and build mobile UIs (Compose Multiplatform) from DESIGN.md tokens. If DESIGN.md is missing it creates one by interviewing the user about identity, visual references, and palette; if it exists it audits and completes it before mapping it to the theme.…