惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
酷 壳 – CoolShell
酷 壳 – CoolShell
L
LangChain Blog
Blog — PlanetScale
Blog — PlanetScale
阮一峰的网络日志
阮一峰的网络日志
Microsoft Azure Blog
Microsoft Azure Blog
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
T
The Blog of Author Tim Ferriss
G
Google Developers Blog
Hugging Face - Blog
Hugging Face - Blog
Y
Y Combinator Blog
D
DataBreaches.Net
Engineering at Meta
Engineering at Meta
MyScale Blog
MyScale Blog
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
iOS App Store Screenshots and Compliance: The Gotchas Aft...
Anand Rathna · 2026-05-16 · via DEV Community

Anand Rathnas

This article was originally published on Jo4 Blog.

Your EAS build succeeded. The IPA uploaded to App Store Connect. Time to submit for review, right?

Click. "Unable to Add for Review."

The Problem

App Store Connect has requirements that have nothing to do with your code. Screenshots need exact dimensions. Export compliance needs declarations for every country. Privacy questionnaires want to know about every SDK you use.

Here's everything that blocked my submission and how I fixed it.

Part 1: Screenshot Dimensions

I ran the simulator, took screenshots, uploaded them. Error:

Screenshots must be 1284 x 2778 pixels
Uploaded: 1320 x 2868 pixels

Enter fullscreen mode Exit fullscreen mode

iPhone 16 Pro Max uses different dimensions than what App Store Connect expects for the "6.5-inch display" category.

The fix:

# Resize all iPhone screenshots to App Store requirements
for f in ./assets/appstore/iphone/*.png; do
  sips -z 2778 1284 "$f"
done

Enter fullscreen mode Exit fullscreen mode

sips is macOS's built-in image processing tool. The -z flag resizes to exact dimensions.

Part 2: iPad Screenshots - The Stretching Disaster

"Easy," I thought. "Just resize the phone screenshots for iPad."

# DON'T DO THIS
sips -z 2732 2048 phone-screenshot.png --out ipad-screenshot.png

Enter fullscreen mode Exit fullscreen mode

The result looked like someone grabbed my UI and pulled it sideways. Buttons were ovals. Text was bloated. Everything was wrong.

The actual fix:

Boot an actual iPad simulator and take native screenshots:

# Start the iPad simulator
xcrun simctl boot "iPad Pro 13-inch (M4)"

# Build and run on iPad
npx expo run:ios --device "iPad Pro 13-inch (M4)"

# Take screenshots at native resolution
xcrun simctl io booted screenshot ./assets/appstore/ipad/screenshot01.png

Enter fullscreen mode Exit fullscreen mode

Phone and tablet are different form factors. The UI adapts. Resizing just stretches.

Part 3: The Screenshot Content Problem

Now I had the right dimensions. But my app requires login. Screenshots of a login screen aren't compelling.

The solution: Onboarding carousel with demo data.

I created a branch (ft/screenshots) with:

  1. An OnboardingCarousel component showing app features
  2. Hardcoded demo data (fake URLs, fake analytics)
  3. A flag to show this instead of the login screen
// Check if we're in "demo mode" for screenshots
if (isDemoMode) {
  return <OnboardingCarousel />;
}

Enter fullscreen mode Exit fullscreen mode

The carousel showed:

  • "Shorten Any URL" with a mock input and result
  • "Track Every Click" with demo analytics charts
  • "Share From Anywhere" showing the iOS share sheet integration
  • "Generate QR Codes" with a sample QR code

Took screenshots of each carousel page. Stashed the changes. Real users never see it.

Part 4: Export Compliance - The France Question

Uploaded screenshots. Hit submit. New blocker:

Missing Compliance: Export Compliance Information Required

Enter fullscreen mode Exit fullscreen mode

The form asks about encryption. My app uses HTTPS. Does that count?

Then it asks specifically about France:

"Does your app qualify for any exemptions provided under category 5 part 2?"

The options mention DES, triple-DES, RC4... algorithms I'm not using.

The correct answer: "None of the algorithms mentioned above"

If your app only uses HTTPS (TLS) through iOS's built-in networking, you select that it uses encryption, but then confirm you're only using standard iOS APIs. No custom cryptographic implementations = no export restrictions beyond what Apple already handles.

Part 5: Privacy Declarations

App Store Connect wants to know every piece of data your app collects. For each data type, you specify:

  • Is it linked to the user's identity?
  • Is it used for tracking?

My app uses Auth0 and Sentry. Here's what I declared:

Auth0:

  • Email Address: Linked to identity, not for tracking
  • Name: Linked to identity, not for tracking
  • User ID: Linked to identity, not for tracking

Sentry (crash reporting):

  • Crash Data: Not linked to identity, not for tracking
  • Performance Data: Not linked to identity, not for tracking

The gotcha: If you use analytics, you need to declare it. If you use third-party login, you're collecting identity data. Be honest - Apple reviews this.

The Complete Screenshot Workflow

For anyone doing this in the future:

Step 1: Capture iPhone Screenshots

# Boot iPhone 15 Pro Max (or similar 6.5" device)
xcrun simctl boot "iPhone 15 Pro Max"

# Run your app
npx expo run:ios --device "iPhone 15 Pro Max"

# Navigate to each screen and capture
xcrun simctl io booted screenshot ./assets/appstore/iphone/screenshot01.png

Enter fullscreen mode Exit fullscreen mode

Step 2: Resize to App Store Dimensions

# iPhone 6.5" requires 1284 x 2778
for f in ./assets/appstore/iphone/*.png; do
  sips -z 2778 1284 "$f"
done

Enter fullscreen mode Exit fullscreen mode

Step 3: Capture iPad Screenshots Separately

# Boot iPad Pro 13"
xcrun simctl boot "iPad Pro 13-inch (M4)"

# Run your app on iPad
npx expo run:ios --device "iPad Pro 13-inch (M4)"

# Capture at native resolution (2048 x 2732)
xcrun simctl io booted screenshot ./assets/appstore/ipad/screenshot01.png

Enter fullscreen mode Exit fullscreen mode

Step 4: Compliance Declarations

  • Export Compliance: Standard iOS HTTPS = no additional export requirements
  • Privacy: Declare Auth0 data as identity-linked, crash reporting as not linked

Lessons Learned

  1. Don't resize across form factors. Phone screenshots stretched to iPad dimensions look terrible. Capture natively on each device type.

  2. Create demo content for screenshots. Login screens don't sell apps. Build an onboarding flow or demo mode, capture screenshots, then remove it.

  3. Export compliance isn't scary. If you're using standard iOS networking (URLSession, Alamofire, etc.), you're just using Apple's TLS implementation. Select the exemption options.

  4. Privacy declarations require honesty. List every SDK that touches user data. Auth0, Sentry, analytics - all of it.

  5. sips is your friend. Built into macOS, handles resizing without installing ImageMagick or Photoshop.


Submitting your first iOS app? What unexpected blockers did you hit? Drop them in the comments.

Building jo4.io - URL shortener with a mobile app that survived App Store review.