RORK LABJP
EVENT — Apple holds its Surprise and Shine event today, September 9, starting at 10:00 Pacific. That lands in the small hours of September 10 in JapanEXPECT — Expected are the iPhone 18 Pro and Pro Max, a foldable, the 2nm A20 Pro chip, and release dates for iOS 27 and its sibling updatesWAIT — As this is written the event has not happened yet. Rumor-stage writing and post-announcement writing look identical once they are mixed togetherMAX — Since Rork Max generates native Swift, Apple news is not somebody else's problem. Worth repeating that the standard product still writes React NativeSIMULATOR — Rork Max compiles on cloud Macs and lets you check the result in a streaming iOS simulator inside the browser, with no Xcode and no Mac hardwareSEASON — A new OS is when automated build pipelines wobble most. An article selling convenience owes its readers a word about that wobbleEVENT — Apple holds its Surprise and Shine event today, September 9, starting at 10:00 Pacific. That lands in the small hours of September 10 in JapanEXPECT — Expected are the iPhone 18 Pro and Pro Max, a foldable, the 2nm A20 Pro chip, and release dates for iOS 27 and its sibling updatesWAIT — As this is written the event has not happened yet. Rumor-stage writing and post-announcement writing look identical once they are mixed togetherMAX — Since Rork Max generates native Swift, Apple news is not somebody else's problem. Worth repeating that the standard product still writes React NativeSIMULATOR — Rork Max compiles on cloud Macs and lets you check the result in a streaming iOS simulator inside the browser, with no Xcode and no Mac hardwareSEASON — A new OS is when automated build pipelines wobble most. An article selling convenience owes its readers a word about that wobble
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 Play34Expo203Rork558Data safety2App 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 $15 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-09-07
Adding .easignore stops EAS from reading .gitignore — count what actually ships to the build
EAS Build decides what to upload from .gitignore, and the moment you add .easignore the two swap places. Here is how I count the bundled files before sending, plus a measured result: once a parent directory is excluded, an exclamation mark cannot bring a file back.
Dev Tools2026-09-05
Your Widget Extension Can Submit a BGTaskScheduler Request. It Just Cannot Register the Handler
Calling BGTaskScheduler from a widget extension compiles, submits, and returns true — and then nothing runs. Here is why registration belongs to the host app only, and how I moved refresh ownership back where it belongs across my wallpaper apps.
📚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