RORK LABJP
BUILD — Rork Max runs real Macs in the cloud loaded with Xcode and the iOS SDK, writing SwiftUI, compiling, reading the errors and building again. That loop, not the code generation, is what lifts the outputNATIVE — What comes out is pure Swift and SwiftUI, not React Native. Reaching AR, Metal graphics and widgets that React Native cannot touch is the real gap between this and other buildersPLATFORMS — Coverage spans iPhone, iPad, Apple Watch, Apple TV and Vision Pro, plus iMessage. Worth a look if you want to start from a watch app or an extension rather than a phone screenCOMPANION — The Rork Companion app lets you check a generated build on a real iPhone without a paid Apple Developer account, lowering the bar for trying a first project end to endPRICING — Free to start, paid plans from $25 a month, and Rork Max on the $200 Max plan. Worth working out up front how many projects it takes to earn that backDEADLINE — From August 31, 2026, Google Play requires target API level 36 or higher for new apps and updates alike. Ten days out, and the targetSdkVersion of what you generate is yours to verifyBUILD — Rork Max runs real Macs in the cloud loaded with Xcode and the iOS SDK, writing SwiftUI, compiling, reading the errors and building again. That loop, not the code generation, is what lifts the outputNATIVE — What comes out is pure Swift and SwiftUI, not React Native. Reaching AR, Metal graphics and widgets that React Native cannot touch is the real gap between this and other buildersPLATFORMS — Coverage spans iPhone, iPad, Apple Watch, Apple TV and Vision Pro, plus iMessage. Worth a look if you want to start from a watch app or an extension rather than a phone screenCOMPANION — The Rork Companion app lets you check a generated build on a real iPhone without a paid Apple Developer account, lowering the bar for trying a first project end to endPRICING — Free to start, paid plans from $25 a month, and Rork Max on the $200 Max plan. Worth working out up front how many projects it takes to earn that backDEADLINE — From August 31, 2026, Google Play requires target API level 36 or higher for new apps and updates alike. Ten days out, and the targetSdkVersion of what you generate is yours to verify
Articles/Dev Tools
Dev Tools/2026-04-07Advanced

Where Rork Apps Stall on Google Play — AD_ID Leakage, Manifest Merging, and the 12-Tester Closed Test

When a Rork-generated Expo app gets held up on Google Play, the cause is usually a permission you never wrote. Here's how to pin down what actually landed in your merged manifest, when to declare AD_ID versus strip it, and how to keep the 12-tester closed test from resetting on you.

Google Play27Android46Rork539Expo175AD_IDpermissions7app review3

Premium Article

Just after 10pm, an email arrived from Play Console. Subject line: "Policy issue."

The body doesn't tell you which file, or which line. It gives you a policy clause and a link.

When you ship apps as a solo developer, that one email eats your evening. The first few times, I spent most of that evening clicking around Play Console without getting any closer to an answer.

What eventually became clear is that Rork-generated Expo apps stall on Google Play in a fairly small number of places. And most of those places are things you never wrote yourself.


The notification tells you the verdict, not the location

The first thing worth internalizing: the email and the Play Console banner are the outcome, not the cause.

There are two places to look:

Google Play Console → [Your app] → Policy and programs → App content
Google Play Console → [Your app] → Policy and programs → Policy status

The part that matters is this: always open the linked policy clause. The email summary is too compressed to tell you which condition you actually tripped. The linked page spells out the qualifying conditions and the exceptions.

The habit I've settled into is to open that page and write down, in one sentence, the specific condition my app was judged to meet.

  • ❌ "Violated the ads policy"
  • ⭕ "Showed a full-screen ad during a screen transition the user hadn't initiated"

Until you can write the second version, you haven't found the cause yet. Start fixing before that sentence exists and you'll ship a change that misses, then hit the same clause on resubmission.


The permission list in app.json doesn't subtract anything

Permissions are far and away the most common stall for Rork-generated Expo apps. And there's a structural misunderstanding sitting underneath it.

The instinct is to trim android.permissions in app.json and expect the permission count to drop. That isn't how it works.

// app.json — this declares what to ADD. It is not a removal list.
{
  "expo": {
    "android": {
      "permissions": ["INTERNET", "VIBRATE"]
    }
  }
}

In an Expo build, your dependencies each ship their own AndroidManifest.xml or config plugin, and those get merged at build time. Permissions that arrive through the merge are unaffected by shortening your permissions array.

Removal is a separate directive:

// app.json — explicitly strip permissions injected by libraries
{
  "expo": {
    "android": {
      "permissions": ["INTERNET", "VIBRATE"],
      "blockedPermissions": [
        "android.permission.RECORD_AUDIO",
        "android.permission.ACCESS_FINE_LOCATION",
        "com.google.android.gms.permission.AD_ID"
      ]
    }
  }
}

blockedPermissions applies tools:node="remove" during the merge. The detail that bites people: use fully qualified names, not the short form. The permissions array happily accepts "RECORD_AUDIO", but blockedPermissions won't match anything unless you write "android.permission.RECORD_AUDIO" in full. This fails silently, which is the worst way for it to fail.

Find out who injected it — don't guess

Before removing anything, establish what's actually there. Listing guesses in blockedPermissions just burns time when they don't match.

Gradle's manifest merger leaves a full trace of the merge:

npx expo prebuild -p android
cd android && ./gradlew :app:processReleaseManifest
 
# Line-by-line record of which library injected which permission
grep -n "AD_ID" app/build/outputs/logs/manifest-merger-release-report.txt

The report gives you entries like ADDED from [com.google.android.gms:play-services-ads:...] AndroidManifest.xml:26:5-84the injecting library and the line number. Only once you can see that can you decide whether the permission should stay or go.

You can also verify from the artifact side:

# Inspect what actually got baked into the thing you're shipping
bundletool build-apks --bundle=app-release.aab --output=app.apks --mode=universal
unzip -o app.apks -d apks_out
aapt2 dump permissions apks_out/universal.apk

I run this before every resubmission. Having fixed the config and having the artifact reflect that fix are two different facts. I've had an EAS Build cache serve me a binary where my blockedPermissions change simply wasn't there.

What you want to knowWhere to lookWhat it tells you
Permissions you declaredandroid/app/src/main/AndroidManifest.xmlYour own app's entries, post-prebuild
Who injected whatmanifest-merger-release-report.txtSource library and line number
What actually shippedaapt2 dump permissions on the AABThe real contents of the artifact

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
A procedure for pinning down permissions that app.json cannot remove, using blockedPermissions and the manifest merger report
A decision table for when to declare AD_ID and when to strip it, keyed to target age and the Families policy
How to run the 12-tester, 14-day closed test required of new personal accounts without resetting the count
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-08-21
The four acceptance checks I still run after the build turns green
A successful build does not mean a shippable build. Here are the four failure classes an AI build loop cannot see, and a dependency-free script that inspects the artifact itself before you submit.
Dev Tools2026-08-19
Three conditions that make Play Policy Insights report nothing on an Expo project
Google Play now ships an open-source policy auditing skill. Running it against an Expo-shaped project, one directory argument moved the result from five detected data categories to zero. Here is when the scan actually reaches your code, and where its output should not be trusted.
Dev Tools2026-05-12
Rork App Rejected for Incomplete Data Safety Section on Google Play: How to Fix It
Step-by-step guide to correctly filling out Google Play's Data Safety section for Rork apps. Covers AdMob, Firebase, RevenueCat, and common declaration mistakes that cause rejections.
📚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 →