What problem does it solve? Android Kotlin development involves many moving parts—Gradle configuration, coroutine-based state management, Compose UI, dependency injection, and testing—and getting the architecture and boilerplate right is time-consuming and error-prone. ## Core Features & Use Cases - Project Scaffolding & Gradle Setup: Provides a complete MVVM project structure and Kotlin DSL build configuration with Compose BOM, Hilt, Room, and KSP. - Coroutines & Compose Patterns: Supplies ready-to-use ViewModel with StateFlow, Repository with Flow, and lifecycle-aware Compose screen implementations. - Testing & CI: Includes MockK and Turbine unit test patterns, a MainDispatcherRule, detekt lint configuration, and a GitHub Actions CI workflow. - Use Case: When building a new Android feature screen, use this Skill to generate the ViewModel, Compose UI, repository layer, and corresponding unit tests following consistent architecture. ## Quick Start Ask the AI to create an Android Kotlin feature screen with a Hilt ViewModel, StateFlow state management, Compose UI, and MockK unit tests.