CtrlK
BlogDocsLog inGet started
Tessl Logo

android-resources

Organize strings, drawables, and Localization resources on Android. Use when managing Android resources, drawables, or adding localization support. (triggers: strings.xml, **/*Screen.kt, stringResource, plurals, R.string)

84

Quality

80%

Does it follow best practices?

Impact

Pending

No eval scenarios have been run

SecuritybySnyk

Passed

No known issues

Optimize this skill with Tessl

npx tessl skill review --optimize ./skills/android/android-resources/SKILL.md
SKILL.md
Quality
Evals
Security

Android Resources Standards

Priority: P2

Implementation Guidelines

Strings & Localization

  • Define in XML: All UI text must in strings.xml. Use stringResource(R.string.*) in Compose.
  • Formatting: Use format args (%s, %d) instead of concatenation. Use plurals (e.g., <item quantity="one">) for quantity-sensitive strings.
  • Parity: Maintain Localizable.strings (iOS) parity where possible for shared features.
  • Dynamic Access: Use context.getString(R.string.id, args) for dynamic lookups.

Assets / Drawables

  • Formats: Prefer VectorDrawables (.xml) over RASTER images. Scale cleanly across density buckets (mdpi, hdpi, xhdpi, xxhdpi).
  • Plurals: Use resources.getQuantityString(R.plurals.items, count, count) for quantity-sensitive strings.
  • Dark Mode: Support Configuration.UI_MODE_NIGHT via values-night/ qualifier or MaterialTheme tokens. Never use hardcoded hex colors in Layouts/Composables.
  • Themes: Map all colors to Design Tokens (primary, surface, error) for consistent skinning.

Anti-Patterns

  • No String Concatenation in UI: Use format args (%s, %d) in strings.xml instead.
  • No Hardcoded UI Text: All visible strings must defined in strings.xml.

References

  • XML Structure
Repository
HoangNguyen0403/agent-skills-standard
Last updated
Created

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.