gradle-build-performance

Diagnoses Android/Gradle build performance issues and applies optimization strategies.

Updated Mar 10, 2026
One-click install
npx skills add https://github.com/siddhantparadox/codexAndroidApp --skill gradle-build-performance-siddhantparadox
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: gradle-build-performance
Source: https://github.com/siddhantparadox/codexAndroidApp/tree/main/.agents/skills/gradle-build-performance
Command: npx skills add https://github.com/siddhantparadox/codexAndroidApp --skill gradle-build-performance-siddhantparadox

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill helps diagnose and resolve slow Android and Gradle build times, optimizing your development workflow and CI/CD pipelines.

Core Features & Use Cases

  • Build Scan Analysis: Understand configuration vs. execution bottlenecks.
  • Performance Tuning: Apply optimizations like configuration cache, build cache, and parallel execution.
  • Migration Guidance: Switch from kapt to KSP for faster annotation processing.
  • Use Case: Your Android app's build time has doubled. Use this Skill to generate a build scan, identify the cause (e.g., slow configuration phase), and apply the recommended optimizations to restore fast build times.

Quick Start

Use the gradle-build-performance skill to analyze why my Android Gradle build is slow.

Frequently Asked Questions about gradle-build-performance

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fix slow Android Gradle build times?

Analyze your build scan to identify configuration or execution bottlenecks causing slow Android Gradle build times, then apply performance tuning like parallel execution and caching.

How do I analyze a Gradle build scan to find compilation bottlenecks?

Analyzing a Gradle build scan helps you distinguish between configuration and execution phase bottlenecks, pinpointing exactly which tasks are causing slow compilation times.

What is the best way to speed up CI/CD pipelines for Android builds?

The best way to speed up Android CI/CD pipelines is applying Gradle performance tuning such as enabling the configuration cache, build cache, and parallel execution.

Does migrating from kapt to KSP improve Android build performance?

Migrating from kapt to KSP improves Android build performance by replacing slow annotation processing with a faster approach that generates stubs more efficiently.

When should I enable the Gradle configuration cache?

You should enable the Gradle configuration cache when your build scan reveals a slow configuration phase, allowing Gradle to reuse the configuration graph across subsequent builds.