Catalog
expo/eas-app-stores

expo

eas-app-stores

EAS service (paid). Deploy Expo apps to the app stores with EAS - build and submit to the iOS App Store, Google Play Store, and TestFlight, configure eas.json build and submit profiles, manage app versions and build numbers, and publish App Store metadata and ASO. Use whenever the user wants to deploy, release, or ship an app to production or the app stores, is preparing a production build, running eas build or eas submit, shipping to TestFlight, bumping version or build numbers, or setting up store listing metadata. For deploying an Expo website or API routes, use the eas-hosting skill.

global
New~1.1k
v1.0Saved Jul 11, 2026

App Store Deployment

EAS service - costs apply. This skill uses Expo Application Services (EAS), a paid product with free-tier limits. eas build and eas submit consume your plan's build minutes, and store submission requires paid Apple Developer and Google Play accounts. Review https://expo.dev/pricing before running cloud commands.

This skill covers building and releasing Expo apps to the iOS App Store, Google Play Store, and TestFlight using EAS (Expo Application Services). For deploying an Expo website or API routes to EAS Hosting, use the eas-hosting skill.

References

Consult these resources as needed:

  • ./references/workflows.md -- CI/CD workflows for automated store releases and PR previews
  • ./references/testflight.md -- Submitting iOS builds to TestFlight for beta testing
  • ./references/app-store-metadata.md -- Managing App Store metadata and ASO optimization
  • ./references/play-store.md -- Submitting Android builds to Google Play Store
  • ./references/ios-app-store.md -- iOS App Store submission and review process

Quick Start

Install EAS CLI

npm install -g eas-cli
eas login

Initialize EAS

npx eas-cli@latest init

This creates eas.json with build profiles.

Build Commands

Production Builds

# iOS App Store build
npx eas-cli@latest build -p ios --profile production

# Android Play Store build
npx eas-cli@latest build -p android --profile production

# Both platforms
npx eas-cli@latest build --profile production

Submit to Stores

# iOS: Build and submit to App Store Connect
npx eas-cli@latest build -p ios --profile production --submit

# Android: Build and submit to Play Store
npx eas-cli@latest build -p android --profile production --submit

# Shortcut for iOS TestFlight
npx testflight

Web & API Route Hosting

Deploying an Expo website or Expo Router API routes to EAS Hosting (npx expo export -p web then eas deploy) is covered by the eas-hosting skill. This skill focuses on native app store releases.

EAS Configuration

Standard eas.json for production deployments:

{
  "cli": {
    "version": ">= 16.0.1",
    "appVersionSource": "remote"
  },
  "build": {
    "production": {
      "autoIncrement": true,
      "ios": {
        "resourceClass": "m-medium"
      }
    },
    "development": {
      "developmentClient": true,
      "distribution": "internal"
    }
  },
  "submit": {
    "production": {
      "ios": {
        "appleId": "your@email.com",
        "ascAppId": "1234567890"
      },
      "android": {
        "serviceAccountKeyPath": "./google-service-account.json",
        "track": "internal"
      }
    }
  }
}

Platform-Specific Guides

iOS

  • Use npx testflight for quick TestFlight submissions
  • Configure Apple credentials via eas credentials
  • See ./references/testflight.md for credential setup
  • See ./references/ios-app-store.md for App Store submission

Android

  • Set up Google Play Console service account
  • Configure tracks: internal → closed → open → production
  • See ./references/play-store.md for detailed setup

Automated Releases

EAS Workflows automate the build → submit → update pipeline for CI/CD. See ./references/workflows.md for store-release examples. To author or validate workflow YAML, use the eas-workflows skill - it works from the live workflow schema.

Version Management

EAS manages version numbers automatically with appVersionSource: "remote":

# Check current versions
eas build:version:get

# Manually set version
eas build:version:set -p ios --build-number 42

Monitoring

# List recent builds
eas build:list

# Check build status
eas build:view

# View submission status
eas submit:list
Files7
7 files · 31.5 KB

Select a file to preview

Overall Score

82/100

Grade

B

Good

Safety

80

Quality

85

Clarity

84

Completeness

78

Summary

This skill guides developers through building and releasing Expo apps to the iOS App Store, Google Play Store, and TestFlight using EAS (Expo Application Services). It provides eas.json configuration examples, submission commands, credential setup, metadata management, and links to detailed reference materials covering iOS submission, Android submission, beta testing, and CI/CD workflows.

Static Analysis Findings

1 finding

Patterns detected by deterministic static analysis before AI scoring. Hover over any finding code for detailed information and remediation guidance.

Credential Exposure
SEC-020Direct .env File Access

Direct .env file access

references/app-store-metadata.md.env

Detected Capabilities

file read (eas.json, app.json, store.config.json)shell execution (eas build, eas submit, eas credentials, eas metadata commands)credential handling (API keys, service account JSON files)environment variable configurationnetwork requests (API calls to App Store Connect, Google Play Console)file path resolution (serviceAccountKeyPath references)CI/CD workflow YAML authoring and validation

Trigger Keywords

Phrases that MCP clients use to match this skill to user intent.

deploy app storetestflight submissiongoogle play releaseeas build submitapp store metadataapp version bumprelease production build

Risk Signals

WARNING

Service account JSON key file reference in eas.json configuration

references/play-store.md and main SKILL.md
WARNING

Direct .env file access for credential storage

references/app-store-metadata.md, references/play-store.md
INFO

Environment variable usage for sensitive data (EXPO_ANDROID_SERVICE_ACCOUNT_KEY_BASE64, etc.)

references/play-store.md
WARNING

API key and credential configuration in JSON files

references/ios-app-store.md (ascApiKeyPath, ascApiKeyIssuerId, ascApiKeyId)
INFO

Demo account credentials in review metadata

references/app-store-metadata.md (demoUsername, demoPassword in review section)

Referenced Domains

External domains referenced in skill content, detected by static analysis.

api.example.comdeveloper.apple.comexample.comexpo.devmarketplace.visualstudio.complay.google.com

Use Cases

  • Build and submit iOS apps to the App Store with EAS
  • Submit Android apps to Google Play Store with automated service account setup
  • Deploy apps to TestFlight for beta testing and internal QA
  • Configure eas.json build and submit profiles for production releases
  • Manage App Store metadata and App Store Optimization (ASO) settings
  • Set up version and build number management for multi-platform releases
  • Automate store releases with EAS Workflows and CI/CD pipelines

Quality Notes

  • Comprehensive skill with well-organized reference materials covering both iOS and Android platforms
  • Clear prerequisite documentation including account setup requirements and service account configuration
  • Excellent use of code examples for eas.json configuration, CLI commands, and metadata structure
  • Well-documented credential setup with both recommended (API keys) and alternative (Apple ID) approaches
  • Strong guidance on security best practices (storing service account keys securely, using .gitignore, preferring environment variables)
  • Good coverage of release strategies, version management, and staged rollouts
  • References to external resources (developer.apple.com, play.google.com) help developers navigate official portals
  • ASO section in metadata reference is detailed and actionable with keyword research tips
  • Helpful troubleshooting sections address common rejection reasons and error messages
  • Clear separation between platforms (iOS/Android) makes the skill easy to navigate for targeted tasks
Model: claude-haiku-4-5-20251001Analyzed: Jul 11, 2026

Reviews

Add this skill to your library to leave a review.

No reviews yet

Be the first to share your experience.

Add expo/eas-app-stores to your library

Command Palette

Search for a command to run...