Back to skills
SkillHub ClubBuild MobileMobileDevOpsTesting

app-store-deploy

This skill provides a reference guide for submitting mobile apps to iOS App Store and Google Play. It covers account requirements, EAS submit commands, common rejection reasons, and testing tracks. It's essentially a structured checklist rather than an interactive tool.

Packaged view

This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.

Stars
5
Hot score
82
Updated
March 20, 2026
Overall rating
A7.5
Composite score
5.0
Best-practice grade
B84.0

Install command

npx @skill-hub/cli install timequity-plugins-app-store-deploy
app-storemobile-deploymenteas-submitapp-review

Repository

timequity/plugins

Skill path: craft-coder/mobile/app-store-deploy

This skill provides a reference guide for submitting mobile apps to iOS App Store and Google Play. It covers account requirements, EAS submit commands, common rejection reasons, and testing tracks. It's essentially a structured checklist rather than an interactive tool.

Open repository

Best for

Primary workflow: Build Mobile.

Technical facets: Mobile, DevOps, Testing.

Target audience: Mobile developers using Expo/EAS who need a quick reference for app store submission requirements.

License: Unknown.

Original source

Catalog source: SkillHub Club.

Repository owner: timequity.

This is still a mirrored public skill entry. Review the repository before installing into production workflows.

What it helps with

  • Install app-store-deploy into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
  • Review https://github.com/timequity/plugins before adding app-store-deploy to shared team environments
  • Use app-store-deploy for mobile workflows

Works across

Claude CodeCodex CLIGemini CLIOpenCode

Favorites: 0.

Sub-skills: 0.

Aggregator: No.

Original source / Raw SKILL.md

---
name: app-store-deploy
description: iOS App Store and Google Play submission requirements and process.
---

# App Store Deployment

## iOS App Store

### Requirements

- Apple Developer Account ($99/year)
- App Icon: 1024x1024 PNG
- Screenshots: All required sizes
- Privacy Policy URL
- App Review Guidelines compliance

### EAS Submit

```bash
# Configure credentials
eas credentials

# Submit to App Store Connect
eas submit --platform ios
```

### App Store Connect

1. Create App in App Store Connect
2. Fill metadata (description, keywords, categories)
3. Upload screenshots
4. Set pricing
5. Submit for review

### Common Rejections

| Issue | Solution |
|-------|----------|
| Crash on launch | Test on real devices |
| Incomplete metadata | Fill all required fields |
| Placeholder content | Use real content |
| Login required | Provide demo account |

## Google Play

### Requirements

- Google Play Developer Account ($25 one-time)
- App Icon: 512x512 PNG
- Feature Graphic: 1024x500
- Screenshots: Phone + 7" + 10" tablets

### EAS Submit

```bash
# First time: upload manually
# Then: eas submit --platform android
```

### Play Console

1. Create app in Play Console
2. Complete app content questionnaire
3. Set up pricing and distribution
4. Upload AAB (not APK)
5. Roll out to production

### Pre-Launch Report

- Automatic testing on real devices
- Crash detection
- Performance metrics
- Security scanning

## Testing Tracks

### iOS

- TestFlight: Up to 10,000 testers
- Internal: 100 testers, instant

### Android

- Internal: 100 testers
- Closed: Invite-only
- Open: Public link
- Production: Full release
app-store-deploy | SkillHub