What problem does it solve? Android and Gradle builds often become painfully slow as projects grow, wasting developer time and CI resources. This Skill provides a systematic workflow to measure build performance, identify bottlenecks across initialization, configuration, and execution phases, and apply proven optimizations one at a time. ## Core Features & Use Cases - Build Scan Diagnostics: Generate and interpret Gradle Build Scans and local profile reports to pinpoint which build phase is slow. - 12 Optimization Patterns: Enable configuration cache, build cache, parallel execution, migrate kapt to KSP, pin dependency versions, eliminate configuration-phase I/O, and more. - Bottleneck Lookup Tables: Map symptoms (slow configuration, slow execution, slow dependency resolution) to specific causes and fixes. - Use Case: Your CI pipeline takes 25 minutes per build. Use this Skill to generate a build scan, discover kapt is dominating execution time, migrate Hilt and Room to KSP, enable the configuration cache, and cut build time significantly. ## Quick Start Analyze my Android project's Gradle build performance and recommend optimizations to make the build faster.