What problem does it solve? Upgrading an Android project to Android Gradle Plugin (AGP) 9 involves many breaking changes, including the new AGP DSL, built-in Kotlin support, and kapt removal. This Skill guides the migration step by step so nothing is missed. ## Core Features & Use Cases - Guided AGP 9 Migration: Walks through dependency updates (KSP 2.3.6+, Hilt 2.59.2+), built-in Kotlin migration, and the new AGP DSL. - kapt to KSP Migration: Checks each kapt dependency for KSP compatibility and applies the legacy-kapt plugin where migration is not possible. - BuildConfig and Cleanup: Handles custom BuildConfig fields with the new API and removes obsolete gradle.properties flags. - Use Case: An Android developer needs to move a production app from AGP 8 to AGP 9. The Skill verifies the current AGP version, migrates the build scripts to the new DSL, converts kapt usages to KSP, and verifies the result with Gradle sync and a dry-run build. ## Quick Start Migrate this Android project to AGP 9 and verify the build still works.