gradle-build-performance
Installation
SKILL.md
Gradle Build Performance
Workflow
- Measure baseline — clean build + incremental build times
- Generate a Build Scan —
./gradlew assembleDebug --scan - Identify the slow phase — Configuration? Execution? Dependency resolution?
- Apply one optimization at a time — don't batch changes; you won't know what helped
- Measure again — confirm improvement before moving on
Quick Diagnostics
# Generate a Build Scan (uploads to scans.gradle.com)
./gradlew assembleDebug --scan