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-08-19Intermediate

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.

Google Play27Expo175Rork539Data safetyApp review

Premium Article

A clean report is the result I trust least.

In its July 15, 2026 policy announcement, Google Play pointed developers at an open-source auditing tool: something that grounds an LLM in Play's policy documents so your assistant can evaluate your code from inside your IDE or CLI. It is called Play Policy Insights. Anything that reduces the number of rejection round-trips is worth an afternoon when you are an indie developer keeping six apps in the store at once.

So I built a minimal Expo-shaped project and ran it. First pass, pointed at android/app: zero findings. Second pass, pointed at the repository root: five data collection categories.

Same code. Same permissions. Same dependencies. The only difference was the path I typed.

What the skill actually inspects

The skill lives in the android/skills repository. It audits three policy domains: Permissions and APIs Hygiene, User Account and Identity, and Data Safety and Privacy.

It runs in two phases. Phase 1 executes orchestrator.py init <app_dir>, which performs static analysis, maps the codebase, and decides which audit goals to activate. Phase 2 hands each activated goal to an agent as a generated prompt, collects the JSON results, and generate_report.py turns them into a Markdown compliance report.

PhaseCommandOutput
Phase 1orchestrator.py init <app_dir>activated_goals, static analysis JSON, per-goal prompts
Phase 2Run per-goal prompts, then orchestrator.py aggregateaggregated_findings.json
Finalizegenerate_report.py <temp_dir>compliance_report.md

Everything rests on Phase 1. Whatever the static scan misses is gone — no downstream model recovers it. The skill says as much: the Phase 1 audit is the source of truth, and if orchestrator.py fails you must stop rather than fall back to manual review. Which means the dangerous case is not a loud failure. It is Phase 1 quietly scanning nothing.

Condition 1: the entry point has to be the repository root

scanner.py checks the directory you gave it and its parent for a package.json or pubspec.yaml. If it finds one, it flags the project as hybrid and widens the scan root to that directory.

In an Expo project, package.json sits at the repository root. Point the tool at android/app and the parent is android, which has no package.json. Hybrid detection never fires, and not a single line of your JavaScript or TypeScript is read.

Directory passed to initactivated_goalsData categories detected
Repository rootdata_safety_part_1, permissions_and_apis5
android/app(empty)0

When a tool says "Android app audit," pointing at the android directory feels correct. That is what I did first. But in Expo and React Native the code requesting permissions lives on the JavaScript side. Scan only the native tree and the audit stops being an audit.

The tell is one line on stderr: Hybrid app detected. Expanding scan root to: .... If that line is absent, the report is not worth reading.

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
You will be able to tell the difference between a pre-submission check that found nothing and one that never reached your code in the first place
You will be able to point the official skill at the right entry point in an Expo or React Native project and close Data safety gaps before you submit
You will be able to see where static scanning over-reports and where it is structurally blind, so you never copy a machine-generated finding straight into your Play Console declaration
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-04-07
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.
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-20
A beta-SDK build can reach TestFlight, but it can't reach review
Builds made with a beta Xcode can be distributed through TestFlight, but they cannot be submitted for App Store review. Here is how to check which SDK produced your build, and how to protect your release profile in eas.json.
📚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 →