Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Android Play Release

ASecurity

Validated Google Play release — runs the pre-flight checks and clears the Play policy gates, builds a signed app bundle with a git-stamped versionCode, uploads to a track, and walks staged rollout (with halt/roll-forward). Use when releasing an Android app to Play.

41 stars
0 votes
0 copies
0 views
Added 9/19/2026
developmentpythongobashtestinggitapi

Works with

cliapi

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add SteveGJones/ai-first-sdlc-practices --skill android-play-release --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Android Play Release?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Android Play Release
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/stevegjones-android-play-release/badge)](https://www.skillsdirectory.com/skills/stevegjones-android-play-release)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: android-play-release
description: Validated Google Play release — runs the pre-flight checks and clears the Play policy gates, builds a signed app bundle with a git-stamped versionCode, uploads to a track, and walks staged rollout (with halt/roll-forward). Use when releasing an Android app to Play.
disable-model-invocation: false
argument-hint: "[path-to-android-project]"
---

# Android Play Release

Get an Android build onto Google Play without the classic policy/upload blockers, and release it with a
safety lever. Belongs to the **`play-store-release-specialist`** discipline. Run it before every Play
upload; the checks are cheap and the failures are expensive (rejection or a bad rollout).

## Arguments

- `path-to-android-project` — the project directory to check (defaults to the current directory).

## Steps

### 1. Run the pre-flight checks

```bash
python -m android_preflight.cli <project-dir> [--play-min-target N]
```

Resolve every **ERROR** before uploading, and run `./gradlew lint` (the checker doesn't reimplement
Android Lint). The checker flags:
- **Sensitive permissions** — background location is an ERROR (needs a Play declaration with one core
  feature + demo video); other restricted permissions are warnings.
- **Exported components** with no permission/intent-filter (any app can invoke them).
- **targetSdk below the Play minimum** (blocks new apps/updates; hidden on new devices — version-sensitive).
- **Release config** — no R8 (`minifyEnabled`), debug signing config, or committed secrets.
- `debuggable`/`usesCleartextTraffic` in the manifest.

### 2. Clear the Play policy/console gates

- **Data Safety** form completed and **matching app + third-party-SDK behaviour** (mismatch = rejection).
- **Account deletion** (in-app + web URL) if the app has accounts; **privacy policy URL** live; **content
  rating** (IARC); ads/target-audience declarations.
- **Sensitive-permission declarations** with justification + demo video where required.

### 3. Build a signed app bundle

- **`versionCode` unique & monotonic** — stamp from `git rev-list --count HEAD` (or CI build number).
- `./gradlew bundleRelease` → a **signed `.aab`** (Play requires the bundle format). Verify locally with
  **bundletool** (`build-apks` / `install-apks`) — the exact split APKs Play will serve.

### 4. Upload to a track and roll out deliberately

- Upload to **internal testing first** (available in minutes, no review) to smoke-test; then **closed/
  open** (external needs the metadata above); then **production**.
- On production, use a **staged (percentage) rollout** starting small (e.g. 5–10%), and watch **Android
  vitals** (user-perceived crash ≥1.09% overall / ≥8% per-device, ANR ≥0.47% / ≥8% gate discoverability).
- Automate via the **Play Developer API** (edits flow: insert → bundles.upload → tracks.update →
  commit), **Gradle Play Publisher** (`com.github.triplet.play`), or **fastlane `supply`** — all with
  service-account JSON auth.

### 5. Halt / roll forward on regression (the Play advantage)

- If vitals regress mid-rollout, **Halt rollout** (the kill switch iOS lacks). Recover by **rolling
  forward**: publish a **higher-versionCode** fixed release to the same track (there is no literal byte
  revert — versionCode is monotonic). Consider an **immediate in-app update** for critical fixes.

### 6. Report

Summarise: pre-flight result (errors fixed), the versionCode and the commit it maps to, the track it
went to, the rollout percentage, and the policy gates cleared. State anything outstanding (e.g. Data
Safety not yet complete) rather than implying the release is ready.

## Notes

- Play policy dates/API levels/vitals thresholds are **version-sensitive** — re-verify against the live
  Google docs.
- Always ship production behind a **staged rollout** so you retain the halt lever.

Attribution

SteveGJonesSteveGJones
View sourceMore from SteveGJones →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

281612 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2132 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →