From android-dev
Guides usage of the Google Play Console CLI (gplay) including flags, output formats, pagination, auth, and command discovery. Use when running or designing gplay commands.
How this skill is triggered — by the user, by Claude, or both
Slash command
/android-dev:gplay-cli-usageThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when you need to run or design `gplay` commands for Google Play Console.
Use this skill when you need to run or design gplay commands for Google Play Console.
--help to discover commands and flags.
gplay --helpgplay tracks --helpgplay tracks list --help| Command | Description |
|---|---|
gplay auth | Authentication and profile management |
gplay apps | List and manage apps in the developer account |
gplay init | Initialize a project with default config |
gplay release | High-level release workflow |
gplay promote | Promote releases between tracks |
gplay rollout | Manage staged rollouts |
gplay tracks | Track management |
gplay bundles | Bundle (AAB) management |
gplay edits | Edit session management |
gplay listings | Store listing management |
gplay images | Screenshot and image management |
gplay sync | Metadata sync (import/export) |
gplay validate | Offline validation of metadata |
gplay vitals | App vitals monitoring (crashes, performance, errors) |
gplay users | User management for developer account |
gplay grants | App-level permission grants |
gplay reports | Financial and statistics reports (list/download from GCS) |
gplay docs generate | Generate CLI documentation |
gplay migrate | Migration tools (e.g., from Fastlane) |
gplay notify | Send notifications (e.g., Slack, webhook) |
gplay update | Self-update the CLI binary |
--package, --output).--confirm.--paginate when the user wants all pages.--dry-run to preview changes without executing them (supported by release, migrate, and other write commands).--output table or --output markdown only for human-readable output.--pretty is only valid with JSON output.GPLAY_DEFAULT_OUTPUT environment variable to change the default output format (e.g., GPLAY_DEFAULT_OUTPUT=table).gplay auth login --service-account /path/to/sa.json.GPLAY_SERVICE_ACCOUNT, GPLAY_PACKAGE.GPLAY_PACKAGE can provide a default package name.GPLAY_TIMEOUT / GPLAY_TIMEOUT_SECONDS control request timeouts.GPLAY_UPLOAD_TIMEOUT / GPLAY_UPLOAD_TIMEOUT_SECONDS control upload timeouts.| Variable | Purpose |
|---|---|
GPLAY_SERVICE_ACCOUNT | Path to service account JSON |
GPLAY_PACKAGE | Default package name |
GPLAY_PROFILE | Active profile name |
GPLAY_TIMEOUT | Request timeout (e.g., 90s, 2m) |
GPLAY_TIMEOUT_SECONDS | Timeout in seconds (alternative) |
GPLAY_UPLOAD_TIMEOUT | Upload timeout (e.g., 5m, 10m) |
GPLAY_DEBUG | Enable debug logging (set to api for HTTP requests) |
GPLAY_NO_UPDATE | Disable update checks |
GPLAY_MAX_RETRIES | Max retries for failed requests (default: 3) |
GPLAY_RETRY_DELAY | Base delay between retries (default: 1s) |
GPLAY_DEFAULT_OUTPUT | Default output format (json, table, markdown) |
gplay tracks list --package com.example.app --paginate
gplay tracks list --package com.example.app | jq '.tracks[] | select(.track == "production")'
# Create/login a named profile
gplay auth login --profile production --service-account /path/to/prod-sa.json
# Switch the active profile
gplay auth switch --profile production
gplay --profile production tracks list --package com.example.app
GPLAY_DEBUG=1 gplay tracks list --package com.example.app
GPLAY_DEBUG=api gplay tracks list --package com.example.app # HTTP details
gplay release --package com.example.app --track beta --bundle app.aab --dry-run
gplay migrate fastlane --source ./fastlane/metadata/android --output-dir ./metadata --dry-run
gplay init --package com.example.app --service-account /path/to/sa.json
gplay apps list
gplay apps list --output table
gplay apps list --paginate
gplay docs generate --output-file ./GPLAY.md
gplay docs generate --output-file - # write to stdout
gplay update
gplay update --check # Check for updates without installing
# --bucket-id is the GCS bucket ID/URI from Play Console > Download reports > Copy Cloud Storage URI
gplay reports financial list --bucket-id <id>
gplay reports financial list --bucket-id <id> --type earnings --from 2026-01 --to 2026-06
gplay reports financial download --bucket-id <id> --from 2026-01 --type earnings --dir ./reports
gplay reports stats list --bucket-id <id>
gplay reports stats list --bucket-id <id> --package com.example.app --type installs
gplay reports stats download --bucket-id <id> --package com.example.app --from 2026-01 --type installs --dir ./reports
gplay notify send --webhook-url https://hooks.slack.com/... --message "Release deployed"
Most write operations require an edit session:
# Create edit
gplay edits create --package com.example.app
# Returns: edit_id
# Make changes
gplay bundles upload --package com.example.app --edit <edit_id> --file app.aab
# Commit changes (publishes)
gplay edits commit --package com.example.app --edit <edit_id>
gplay release (creates edit, uploads, commits)gplay edits create → gplay bundles upload → gplay edits commitUse high-level for simplicity, manual for fine-grained control.
npx claudepluginhub hanamizuki/solopreneur --plugin android-devAutomates Google Play releases across internal, beta, and production tracks using gplay CLI. Handles bundle uploads, track updates, staged rollouts, and metadata synchronization.
Google Play Developer API knowledge base and automation expert. Use when interacting with or integrating the Google Play Developer API for publishing, in-app products, subscriptions, reviews, or reporting. Note that this skill provides the API knowledge (e.g. fastlane supply, googleapis endpoints) and differs from google-play-release-agent which is for release checklists and audits.
Uploads Google Play Store listing metadata (title/description), images (icon/screenshots), release notes, and manages track releases and promotion via the mimi-seed MCP. For publishing Android apps.