RORK LABJP
MAX — Rork Max is built on Claude Code and Claude Opus 4.6, generating native Swift apps directly instead of React NativeAPPLE — Rork Max targets the whole Apple ecosystem: iPhone, iPad, Apple Watch, Apple TV, Vision Pro, and iMessageWORKFLOW — In practice, users settle into letting the AI scaffold while they rewrite the state management and data layer themselvesSEED — Rork raised a $15M seed led by Left Lane Capital in April, with Peak XV, True Ventures, and a16z Speedrun joiningPAPERLINE — Rork acquired app builder Paperline and says it will stay acquisitive to bring in engineering talentREVIEW — Three-month revisit reviews are growing, clarifying where the tool shines and where it doesn'tMAX — Rork Max is built on Claude Code and Claude Opus 4.6, generating native Swift apps directly instead of React NativeAPPLE — Rork Max targets the whole Apple ecosystem: iPhone, iPad, Apple Watch, Apple TV, Vision Pro, and iMessageWORKFLOW — In practice, users settle into letting the AI scaffold while they rewrite the state management and data layer themselvesSEED — Rork raised a $15M seed led by Left Lane Capital in April, with Peak XV, True Ventures, and a16z Speedrun joiningPAPERLINE — Rork acquired app builder Paperline and says it will stay acquisitive to bring in engineering talentREVIEW — Three-month revisit reviews are growing, clarifying where the tool shines and where it doesn't
Articles/Dev Tools
Dev Tools/2026-06-26Advanced

Keep Your Rork App's Review From Stalling on a Privacy Manifest Gap

Handle PrivacyInfo.xcprivacy and Required Reason APIs in a Rork Expo app — a common cause of App Store review stalls — with the app.config.ts setup and a step-by-step check of third-party SDKs.

Rork502Expo139Privacy Manifest5App Store77Required Reason API4

Premium Article

You submit the app, and just when you think it cleared, an email arrives from Apple: "your app uses an API without a declared reason" — that warning that starts with ITMS. As an indie developer shipping several apps to the App Store and Google Play, the first time I got that notice I froze, with no idea what to fix.

Rork emits an Expo (React Native) app, and inside it many native APIs and third-party SDKs are running. Since 2024 Apple requires you to declare, in a privacy manifest, the "reason" for using certain APIs. Without the declaration it is a warning email today, but it will be upgraded to a rejection. Here, I work through this for a Rork project from both sides — your own code and the SDKs.

What is actually being asked

Apple requires two broad things.

  1. Shipping a "privacy manifest" (PrivacyInfo.xcprivacy) that declares the kinds of data your app collects and how they are used.
  2. Declaring, with a prescribed code, why you use certain APIs known as "Required Reason APIs."

Required Reason APIs are a set — file timestamps, free disk space, system boot time, UserDefaults — that can be abused for fingerprinting. If you use them for legitimate purposes, you pass simply by declaring the right reason code. The catch is that in most cases you are not calling them directly — a dependency is.

First, learn to read the warning email

The email lists the missing API categories, for example "no reason declared for NSPrivacyAccessedAPICategoryUserDefaults." Not skimming this is the start of the fix.

The first thing I did was copy the category names from the email and, for each, sort out "is this from my code or from an SDK?" Things like UserDefaults that the app itself uses go on my side; things an ad SDK touches internally go on the SDK side. That sorting instantly clarifies where to fix.

Thank you for reading this far.

Continue Reading

What follows includes implementation code, benchmarks, and practical content we hope you'll find useful. This site runs without ads — server and development costs are supported entirely by members like you. If it's been helpful, we'd be truly grateful for your support.

WHAT YOU'LL LEARN
Understand what the post-submission ITMS-91053 email (undeclared-reason API) means and exactly which file to fix to make it stop
Get the procedure for checking not just your own code but the manifests inside third-party SDKs like AdMob
Set up your privacy manifest in app.config.ts so it ships automatically on every build
Secure payment via Stripe · Cancel anytime

Unlock This Article

Get full access to the rest of this article. Buy once, read anytime. This site is ad-free — your support goes directly toward keeping it running.

or
Unlock all articles with Membership →
Share

Thank You for Reading

Rork Lab is ad-free, supported entirely by members like you. We publish practical guides daily with implementation code, benchmarks, and production-ready patterns. If you've found it useful, we'd love to have you on board.

  • Copy-paste ready implementation code
  • New advanced guides published daily
  • $5/mo or $10 for lifetime access
View Membership →

Related Articles

Dev Tools2026-06-14
When Your Rork App Gets ITMS-91053 — A Practical Guide to Privacy Manifests and Required Reason APIs
Submitting a Rork-generated Expo app to the App Store can trigger Privacy Manifest warnings even when you never wrote the offending code. Here is how to clear both Required Reason API and SDK manifest issues before you submit.
Dev Tools2026-05-23
Auditing Privacy Manifests for Rork-Generated Expo Apps — A One-Day Pre-Submission Workflow for Indie Developers
A pre-submission workflow for indie developers shipping Rork-generated Expo apps. Walks through how to enumerate every dependency, detect missing PrivacyInfo.xcprivacy files, and ship without ITMS-91053 rejections — based on twelve years of personal app development.
Dev Tools2026-07-10
Adding React Compiler to Expo Let Me Delete 41 Hand-Written memo Calls
I enabled React Compiler on Rork-generated React Native screens and measured the rerender counts with Profiler. Here is how I decided which memo and useCallback calls were safe to delete, how to find the components the compiler bailed out on, and how to catch regressions in CI.
📚RECOMMENDED BOOKS
Build a Large Language Model (From Scratch)
Sebastian Raschka
LLM Dev
Prompt Engineering for LLMs
Berryman & Ziegler
Prompting
AI Engineering
Chip Huyen
AI Eng
* Contains affiliate links
See all →