What problem does it solve? Android projects with many modules often duplicate the same Gradle configuration (compileSdk, minSdk, toolchains, Compose setup) across every build.gradle.kts file, making updates error-prone and inconsistent. This Skill guides you through centralizing that logic into convention plugins inside a build-logic composite build. ## Core Features & Use Cases - Convention Plugin Setup: Step-by-step creation of application, library, and Compose convention plugins registered with stable IDs. - Composite Build & Version Catalog Wiring: Configures build-logic as an included build and shares the root libs.versions.toml catalog with it. - AGP 9 Migration Guidance: Flags breaking changes (built-in Kotlin, removed variant APIs, kapt removal) and defers to dedicated migration skills. - Use Case: You are modularizing an Android app into feature modules. Apply this Skill so each feature module's build file shrinks to a few lines while all shared configuration lives in one place. ## Quick Start Set up a build-logic composite build with convention plugins so my Android feature modules share one central Gradle configuration.