What problem does it solve? Android and Gradle builds often become painfully slow as projects grow, wasting developer time on every compile. 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 slow phases. - 12 Optimization Patterns: Enable configuration cache, build cache, parallel execution, migrate kapt to KSP, pin dependency versions, and eliminate configuration-phase I/O. - Bottleneck Lookup Tables: Map symptoms (slow configuration, execution, or dependency resolution) to specific causes and fixes. - Use Case: Your CI pipeline takes 20 minutes per build. Use this Skill to generate a build scan, discover kapt is the bottleneck, migrate to KSP, enable the build cache, and cut build time significantly. ## Quick Start Analyze my Gradle build performance and recommend optimizations to make my Android builds faster.