Open
Conversation
There was a problem hiding this comment.
Pull request overview
This PR adds the Compose Stability Analyzer Plugin to enable recomposition tracking and performance monitoring in the JetLime library and sample app. The analyzer helps identify unnecessary recompositions and stability issues in Compose code.
Key changes:
- Adds plugin configuration in version catalog and build files
- Applies
@TraceRecompositionannotation to selected timeline composables in the sample app - Implements custom recomposition logger in
MyApplicationfor Android builds - Registers custom application class in AndroidManifest
Reviewed changes
Copilot reviewed 8 out of 9 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| gradle/libs.versions.toml | Adds version declaration and plugin alias for stability analyzer (0.6.0) |
| build.gradle.kts | Registers plugin in root build file |
| jetlime/build.gradle.kts | Applies analyzer plugin to library module |
| sample/composeApp/build.gradle.kts | Applies analyzer plugin to sample app |
| sample/composeApp/src/androidMain/AndroidManifest.xml | Registers MyApplication class |
| sample/composeApp/src/androidMain/kotlin/com/pushpal/jetlime/sample/MyApplication.kt | Implements custom recomposition logging setup |
| sample/composeApp/src/commonMain/kotlin/timelines/*.kt | Adds @TraceRecomposition to three timeline composables |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
# Conflicts: # sample/iosApp/Pods/Pods.xcodeproj/xcuserdata/pushpalroy.xcuserdatad/xcschemes/xcschememanagement.plist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds the Compose Stability Analyzer Plugin to enable recomposition tracking and performance monitoring in the JetLime library and sample app. The analyzer helps identify unnecessary recompositions and stability issues in Compose code.
Key changes: