app-store-deployment

aj-geddes/useful-ai-prompts · updated Apr 8, 2026

$npx skills add https://github.com/aj-geddes/useful-ai-prompts --skill app-store-deployment
0 commentsdiscussion
summary

Publish mobile applications to official app stores with proper code signing, versioning, testing, and submission procedures.

skill.md

App Store Deployment

Table of Contents

Overview

Publish mobile applications to official app stores with proper code signing, versioning, testing, and submission procedures.

When to Use

  • Publishing apps to App Store and Google Play
  • Managing app versions and releases
  • Configuring signing certificates and provisioning profiles
  • Automating build and deployment processes
  • Managing app updates and rollouts

Quick Start

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)

Reference Guides

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

Best Practices

✅ DO

  • Use signed certificates and provisioning profiles
  • Automate builds with CI/CD
  • Test on real devices before submission
  • Keep version numbers consistent
  • Document deployment procedures
  • Use environment-specific configurations
  • Implement proper error tracking
  • Monitor app performance post-launch
  • Plan rollout strategy
  • Keep backup of signing materials
  • Test offline functionality
  • Maintain release notes

❌ DON'T

  • Commit signing materials to git
  • Skip device testing
  • Release untested code
  • Ignore store policies
  • Use hardcoded API keys
  • Skip security reviews
  • Deploy without monitoring
  • Ignore crash reports
  • Make large version jumps
  • Use invalid certificates
  • Deploy without backups
  • Release during holidays

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.870 reviews
  • Chinedu Haddad· Dec 24, 2024

    Keeps context tight: app-store-deployment is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Kiara Malhotra· Dec 12, 2024

    app-store-deployment has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Dhruvi Jain· Dec 8, 2024

    app-store-deployment reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Kabir Mensah· Dec 4, 2024

    app-store-deployment reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Oshnikdeep· Nov 27, 2024

    I recommend app-store-deployment for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Ava Thompson· Nov 23, 2024

    I recommend app-store-deployment for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Chinedu Lopez· Nov 15, 2024

    app-store-deployment has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Rahul Santra· Nov 7, 2024

    We added app-store-deployment from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Alexander Gonzalez· Nov 7, 2024

    app-store-deployment fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Fatima White· Nov 3, 2024

    Keeps context tight: app-store-deployment is the kind of skill you can hand to a new teammate without a long onboarding doc.

showing 1-10 of 70

1 / 7