App Store
by @ivangdavila
Publish and manage iOS and Android apps with account setup, submission workflows, review compliance, and rejection handling.
clawhub install app-storeπ About This Skill
name: App Store description: Publish and manage iOS and Android apps with account setup, submission workflows, review compliance, and rejection handling.
Scope
App Store Connect (iOS) and Google Play Console (Android). Covers the full publishing lifecycle from account creation to updates. For keyword optimization, see app-store-optimization skill.
Account Setup
| Platform | Cost | Time | Key Steps | |----------|------|------|-----------| | Apple Developer Program | $99/year | 1-7 days | Enroll β D-U-N-S (orgs) β Payment β Agreements | | Google Play Console | $25 once | Minutes-48h | Register β Identity verification β Payment profile |
Apple gotchas:
Google gotchas:
iOS Signing (The Hard Part)
| Asset | What It Is | Where Created | Expires | |-------|------------|---------------|---------| | Distribution Certificate | Your signing identity | Keychain β App Store Connect | 1 year | | Provisioning Profile | Links cert + app ID + devices | App Store Connect | 1 year | | App ID | Unique identifier (bundle ID) | App Store Connect | Never |
When Xcode says "No signing identity": 1. Check certificate exists in Keychain Access (login keychain) 2. Check provisioning profile includes that certificate 3. Check bundle ID in Xcode matches App ID exactly 4. Revoke and recreate if nothing else works
Automatic vs Manual Signing:
Submission Checklist
Pre-submit verification (both platforms):
iOS-specific:
Android-specific:
Common Rejections
| Code | Meaning | Fix | |------|---------|-----| | 4.2 (iOS) | Minimum functionality | Add features, or argue value proposition in appeal | | 4.3 (iOS) | Spam/duplicate | Differentiate significantly from your other apps | | 5.1.1 (iOS) | Data collection | Implement App Tracking Transparency, update privacy manifest | | 2.1 (iOS) | Crashes/bugs | Test on real devices, check Crashlytics | | Deceptive behavior (Android) | Misleading metadata | Match screenshots to real functionality | | Broken functionality (Android) | App doesn't work as described | Full QA on production build |
Appeal strategy: 1. Read rejection reason carefully (don't assume) 2. If misunderstanding: Explain with screenshots, video if needed 3. If valid: Fix issue, note what changed in resolution notes 4. Never resubmit identical binary hoping for different reviewer
Review Timeline
| Platform | Typical | Expedited | Slower Periods | |----------|---------|-----------|----------------| | Apple | 24-48h | Request via App Review form | New iOS launches, holidays | | Google | 2-6h | N/A | Initial submissions, policy violations |
Apple expedited review: Only for critical bugs, time-sensitive events. Overuse = ignored.
Monetization Setup
In-app purchases (IAP): 1. Create products in App Store Connect / Play Console 2. Implement StoreKit (iOS) / BillingClient (Android) 3. Set up server-side receipt validation (don't trust client) 4. Handle sandbox vs production environments
Subscriptions:
Revenue splits: Apple/Google take 15-30% (15% for Small Business Program or after year 1 of subscription).
Multi-App Management
Organization structure:
Team roles (critical):
Cross-platform releases:
When to Load More
| Situation | Reference |
|-----------|-----------|
| Keyword optimization, A/B testing | app-store-optimization skill |
| Generating release notes from git | app-store-changelog skill |
| TestFlight/internal testing setup | testing.md |
| CI/CD automation (fastlane, APIs) | automation.md |