11 lines
461 B
Plaintext
11 lines
461 B
Plaintext
---
|
|
description: Outlines performance optimization guidelines for Android Jetpack Compose applications.
|
|
globs: app/src/main/java/com/package/**/*.kt
|
|
---
|
|
- Minimize recomposition using proper keys.
|
|
- Use proper lazy loading with LazyColumn and LazyRow.
|
|
- Implement efficient image loading.
|
|
- Use proper state management to prevent unnecessary updates.
|
|
- Follow proper lifecycle awareness.
|
|
- Implement proper memory management.
|
|
- Use proper background processing. |