From aj-geddes-useful-ai-prompts-4
Deploys iOS and Android apps to App Store and Google Play with code signing, versioning, build configuration, and release management.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aj-geddes-useful-ai-prompts-4:app-store-deploymentThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- [Overview](#overview)
Publish mobile applications to official app stores with proper code signing, versioning, testing, and submission procedures.
Minimal working example:
# Create development and distribution signing certificates
# Step 1: Generate Certificate Signing Request (CSR) in Keychain Access
# Step 2: Create App ID in Apple Developer Portal
# Step 3: Create provisioning profiles (Development, Distribution)
# Xcode configuration for signing
# Set Team ID, Bundle Identifier, and select provisioning profiles
# Build Settings:
# - Code Sign Identity: "iPhone Distribution"
# - Provisioning Profile: Select appropriate profile
# - Code Sign Style: Automatic (recommended)
# Info.plist settings
<?xml version="1.0" encoding="UTF-8"?>
<plist version="1.0">
<dict>
<key>CFBundleShortVersionString</key>
<string>1.0.0</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<false/>
</dict>
// ... (see reference guides for full implementation)
Detailed implementations in the references/ directory:
| Guide | Contents |
|---|---|
| iOS Deployment Setup | iOS Deployment Setup |
| Android Deployment Setup | Android Deployment Setup |
| Version Management | Version Management |
| Automated CI/CD with GitHub Actions | Automated CI/CD with GitHub Actions |
| Pre-Deployment Checklist | Pre-Deployment Checklist |
npx claudepluginhub aj-geddes/useful-ai-promptsDeploys iOS and Android mobile apps to App Store and Google Play with code signing, versioning, and GitHub Actions CI/CD. Use for release preparation, certificate setup, and pipeline automation.
Guides mobile app deployment to App Store Connect and Google Play Console: configuration, code signing/provisioning, Fastlane automation, review compliance, phased rollouts, Crashlytics/Sentry integration.
Manages mobile app release lifecycle: iOS App Store, Google Play, TestFlight, staged rollouts, OTA updates, code signing, and store compliance. Covers React Native (EAS), Flutter, and native builds.