Skip to content
Development
Skill

/android-deployment

Configure release signing, R8 obfuscation, and App Bundle publishing for Android. Use when setting up signing configs, enabling minification, adding ProGuard keep rules, or preparing for Play Store submission.

From plugin
agent-skills-standard
538200 skills1 MCP
Install
$ npx -y skills add hoangnguyen0403/agent-skills-standard --skill android-deployment --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/android-deployment

Context preview

The summary Claude sees to decide when to auto-load this skill.

Configure release signing, R8 obfuscation, and App Bundle publishing for Android. Use when setting up signing configs, enabling minification, adding ProGuard keep rules, or preparing for Play Store submission.

SKILL.md

android-deployment.SKILL.md
name: android-deployment
description: Configure release signing, R8 obfuscation, and App Bundle publishing for Android. Use when setting up signing configs, enabling minification, adding ProGuard keep rules, or preparing for Play Store submission.
metadata:
  triggers:
    files:
    - 'build.gradle.kts'
    - 'proguard-rules.pro'
    keywords:
    - signingConfigs
    - proguard
    - minifyEnabled
    - isMinifyEnabled
    - isShrinkResources
    - .aab
    - releaseKeystore

Android Deployment Standards

**Priority: P0 (CRITICAL)**

Implementation Guidelines

Build Configuration

  • **Minification**: Always enable `isMinifyEnabled = true` and `isShrinkResources = true` for Release builds (R8).
  • **Format**: Publish using **App Bundles (.aab)** for Play Store optimization.
  • **Signing**: NEVER commit keystores or passwords. Use Environment Variables / Secrets.

Proguard / R8

  • **Rules**: Keep rules minimal. Use annotations (`@Keep`) for reflection-heavy classes instead of broad wildcard rules.
  • **Mapping**: Upload `mapping.txt` to Play Console for crash de-obfuscation.

Anti-Patterns

  • **No debuggable=true in Release**: Breaks obfuscation and exposes internal logic.
  • **No Secrets in Repo**: Use local.properties or CI environment variables.

References

  • [Signing & R8](references/implementation.md)
Ships withagent-skills-standard

The portable SDLC standards layer for AI coding agents. Sync once, then work in your own runtime.

Get the whole plugin

Other skills on agent-skills-standard.