# Analyzing Jetpack Compose compiler reports with a Gradle plugin

DevFeed: [Analyzing Jetpack Compose compiler reports with a Gradle plugin](<https://devfeed.tech/articles/effortless-compose-compiler-report-analysis-25716.md>)

Original publisher: [Read original article](<https://blog.shreyaspatil.dev/effortless-compose-compiler-report-analysis/>)

Author: Shreyas Patil

Published: 2024-05-20T12:30:51Z

Content type: tutorial

Language: en

Sources: [Shreyas Patil's Blog](<https://devfeed.tech/sources/shreyas-patil-s-blog.md>)

Topics: [Jetpack Compose](<https://devfeed.tech/topics/jetpack-compose.md>), [Gradle](<https://devfeed.tech/topics/gradle.md>)

Tags: [analysis](<https://devfeed.tech/tags/analysis.md>), [android](<https://devfeed.tech/tags/android.md>), [android-app-development](<https://devfeed.tech/tags/android-app-development.md>), [android-development](<https://devfeed.tech/tags/android-development.md>), [android-studio](<https://devfeed.tech/tags/android-studio.md>), [compose](<https://devfeed.tech/tags/compose.md>), [compose-multiplatform](<https://devfeed.tech/tags/compose-multiplatform.md>), [debugging](<https://devfeed.tech/tags/debugging.md>), [gradle-plugin](<https://devfeed.tech/tags/gradle-plugin.md>), [guide](<https://devfeed.tech/tags/guide.md>), [jetpack](<https://devfeed.tech/tags/jetpack.md>), [jetpack-compose](<https://devfeed.tech/tags/jetpack-compose.md>), [kotlin](<https://devfeed.tech/tags/kotlin.md>), [kotlin-multiplatform](<https://devfeed.tech/tags/kotlin-multiplatform.md>), [opensource](<https://devfeed.tech/tags/opensource.md>), [performance](<https://devfeed.tech/tags/performance.md>), [ui](<https://devfeed.tech/tags/ui.md>)

## AI overview

This tutorial explains how Jetpack Compose compiler reports expose composable-function stability, restartability, and skippability. It presents a Gradle plugin that parses the reports and metrics and converts them into an HTML report highlighting potentially problematic and non-problematic composables and classes.

## Source excerpt

A guide to analyzing Jetpack Compose compiler reports easily. Learn how to diagnose stability and skippability of your composables for better performance.