CtrlK
BlogDocsLog inGet started
Tessl Logo

android-performance

Optimize Android app startup, UI rendering, frame stability, and benchmark performance with Baseline Profiles, Macrobenchmark, and lazy initialization. Use when reducing startup time, diagnosing jank, or measuring rendering; defer Compose state API and test-only questions.

69

Quality

86%

Does it follow best practices?

Run evals on this skill

Adds up to 20 points to the overall score

View guide

SecuritybySnyk

Passed

No findings from the security scan

SKILL.md
Quality
Evals
Security

Android Performance Standards

Priority: P1 (HIGH)

1. Accelerate Startup

  • Generate Baseline Profiles for all production apps — pre-compiles critical paths (30-40% startup improvement).
  • Defer heavy SDK init using App Startup or lazy Singletons. Never block Application.onCreate.

See baseline & startup for lazy initialization patterns.

2. Eliminate UI Jank

  • Use Layout Inspector to find unnecessary recompositions.
  • Load images with Coil/Glide using proper caching and resizing (.crossfade()).
  • LazyColumn must use key and stable item classes.

See baseline & startup for LazyColumn optimization.

3. Avoid Layout Bottlenecks

  • Replace nested weights with ConstraintLayout (Views) or Row/Column with Modifier.weight (Compose).
  • Never hold Activity context in Singletons — use Application context to prevent memory leaks.

Anti-Patterns

  • No Nested Weights: Use ConstraintLayout (Views) or Row/Column (Compose) instead.
  • No Activity Context in Singletons: Use Application context to prevent memory leaks.

References

Canonical response anchors

  • Additional task-grounded exact anchors: Baseline Profile
Repository
HoangNguyen0403/agent-skills-standard
Last updated
First committed

Is this your skill?

If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.