Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
alphaonedev avatar

Android Deploy

  • 53 installs
  • 6 repo stars
  • Updated March 13, 2026
  • alphaonedev/openclaw-graph

android-deploy is a Claude skill that automates Android app deployment, covering Gradle variants, signing, Google Play Console uploads, Firebase distribution, Fastlane, and bundletool.

About

This skill automates Android app deployment, covering Gradle build variants, APK and AAB signing, Google Play Console uploads, Firebase App Distribution, Fastlane, and bundletool. A developer uses it to build, sign, and release apps in production or to set up CI/CD release pipelines. It documents signing schemes, Play API uploads, and Fastlane lanes.

  • Automates Android release: Gradle variants, APK/AAB signing
  • Uploads to Google Play Console and distributes via Firebase
  • Fastlane lanes and bundletool for CI/CD-driven releases

Android Deploy by the numbers

  • 53 all-time installs (skills.sh)
  • Ranked #591 of 1,039 Mobile Development skills by installs in the Skillselion catalog
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
At a glance

android-deploy capabilities & compatibility

requires Google Play API credentials (GOOGLE_PLAY_API_KEY) and a signing keystore; Firebase needs FIREBASE_TOKEN

Capabilities
app signing · play store upload · firebase distribution · fastlane automation · aab build
Works with
gcp
Use cases
ci cd · devops
Pricing
Bring your own API key
From the docs

What android-deploy says it does

This skill automates Android app deployment, covering Gradle-based builds, APK/AAB signing, uploads to Google Play Console, distribution via Firebase, and tools like Fastlane and bundletool for stream
SKILL.md
Automate workflows with Fastlane, including lane definitions for build and deploy.
SKILL.md
npx skills add https://github.com/alphaonedev/openclaw-graph --skill android-deploy

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs53
repo stars6
Last updatedMarch 13, 2026
Repositoryalphaonedev/openclaw-graph

What it does

Automate Android release: build variants, sign APK or AAB, and upload to Google Play or Firebase.

Who is it for?

automating signed Android releases and Play Store uploads in CI/CD

Skip if: non-Android projects or basic builds without deployment needs

When should I use this skill?

when building, signing, and releasing an Android app to Google Play or Firebase

What you get

a signed APK or AAB released to Google Play or distributed to testers

  • signed apk or aab
  • play store upload
  • fastlane release lane

By the numbers

  • 6 key capabilities: variants, signing, Play upload, Firebase, Fastlane, bundletool

Files

SKILL.mdMarkdownGitHub ↗

android-deploy

Purpose

This skill automates Android app deployment, covering Gradle-based builds, APK/AAB signing, uploads to Google Play Console, distribution via Firebase, and tools like Fastlane and bundletool for streamlined CI/CD.

When to Use

Use this skill for deploying Android apps in production, testing variants, or automating releases; ideal for CI pipelines, app updates to Google Play, or internal distribution via Firebase; avoid for non-Android projects or basic builds without deployment needs.

Key Capabilities

  • Build and select Gradle variants (e.g., debug, release) using build.gradle configurations.
  • Sign APKs or AABs with keystores, supporting v1 and v2 signing schemes.
  • Upload apps to Google Play Console via API, including managing edits and tracks.
  • Distribute builds via Firebase App Distribution for beta testing.
  • Automate workflows with Fastlane, including lane definitions for build and deploy.
  • Generate and test APKs from AABs using bundletool for device-specific optimization.

Usage Patterns

To deploy an Android app, first configure build.gradle with variants (e.g., set buildTypes { release { ... } }), then use Fastlane to chain tasks like building, signing, and uploading. For CI integration, invoke Gradle tasks via scripts, pass environment variables for keys, and handle outputs for subsequent steps. Always verify keystore paths and API credentials before running; for example, run a Fastlane lane that calls ./gradlew assembleRelease followed by bundletool extraction.

Common Commands/API

  • Gradle build for a variant: ./gradlew assembleRelease --stacktrace (use --stacktrace for debugging).
  • Sign an APK: apksigner sign --ks my.keystore --ks-key-alias myalias myapp.apk (requires keystore file and alias).
  • Upload to Google Play: Use Google Play API endpoint POST https://www.googleapis.com/androidpublisher/v3/applications/{packageName}/edits with OAuth token from $GOOGLE_PLAY_API_KEY; example curl: curl -H "Authorization: Bearer $GOOGLE_PLAY_API_KEY" -d '{"title": "Edit"}' https://....
  • Firebase App Distribution: firebase appdistribution:distribute myapp.apk --app <APP_ID> --groups my-testers (set $FIREBASE_TOKEN for auth).
  • Fastlane lane: Define in Fastfile: lane :deploy do |options| sh("./gradlew assembleRelease") end; run with fastlane android deploy.
  • Bundletool for AAB: bundletool build-apks --bundle=myapp.aab --output=myapp.apks --ks=my.keystore (include --ks-pass for password via env var like $KEYSTORE_PASS).
  • Code snippet for Gradle build in build.gradle: android { buildTypes { release { signingConfig signingConfigs.release } } } (2 lines).
  • API call in script: response = requests.post('https://www.googleapis.com/androidpublisher/v3/...', headers={'Authorization': f'Bearer {os.environ["GOOGLE_PLAY_API_KEY"]}'} ) (2 lines).

Integration Notes

Integrate by setting environment variables for sensitive data, e.g., export GOOGLE_PLAY_API_KEY=$SERVICE_API_KEY for OAuth; configure Fastlane with a Fastfile in your project root, including lanes that reference Gradle tasks. For Firebase, add the Firebase CLI and set $FIREBASE_TOKEN via service account JSON. Use bundletool as a JAR in your build pipeline, ensuring it's version-compatible (e.g., 1.14.0+). Link with CI tools like GitHub Actions by adding steps: run: fastlane android deploy in your workflow YAML.

Error Handling

Handle signing errors by checking keystore paths and passwords (e.g., if apksigner fails with "Keystore not found", verify file existence); for API uploads, catch 401 errors by ensuring $GOOGLE_PLAY_API_KEY is valid and not expired. Gradle build failures often stem from variant mismatches—use ./gradlew tasks to list available tasks. For Fastlane, debug with fastlane --verbose; if bundletool reports "Invalid bundle", validate AAB with bundletool validate --bundle=myapp.aab. Always wrap commands in try-catch blocks in scripts, e.g., try { sh("./gradlew assembleRelease") } catch { echo "Build failed: $error" }.

Concrete Usage Examples

Example 1: Build and Sign an APK for Release First, ensure build.gradle has: signingConfigs { release { storeFile file("my.keystore") keyAlias "myalias" } }. Then, run: ./gradlew assembleRelease. Finally, sign: apksigner sign --ks my.keystore --ks-key-alias myalias app/build/outputs/apk/release/app-release-unsigned.apk. This produces a signed APK ready for distribution.

Example 2: Upload to Google Play via Fastlane Create a Fastfile with: lane :upload do upload_to_play_store track: 'internal' apk_path: 'app/build/outputs/apk/release/app-release.apk' end. Set env var: export SUPPLY_JSON_KEY_FILE=$GOOGLE_PLAY_SERVICE_ACCOUNT. Run: fastlane upload. This automates building, signing, and uploading to the internal track on Google Play Console.

Graph Relationships

  • Related to: mobile cluster (e.g., shares dependencies with iOS deployment skills).
  • Integrates with: ci-cd pipelines (e.g., connects to build tools like Gradle).
  • Depends on: authentication services (e.g., Google Play API keys).
  • Conflicts with: non-mobile skills (e.g., web deployment).

Related skills

FAQ

What does android-deploy automate?

It automates Gradle builds, APK and AAB signing, Google Play Console uploads, Firebase App Distribution, Fastlane lanes, and bundletool APK generation.

Is it meant for CI/CD?

Yes. It is ideal for CI pipelines, app updates to Google Play, and internal distribution via Firebase.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.