Verify an emitted app
verify_appPAID. Checks that an emitted app was applied correctly, before it is built. Takes what was written (file paths with byte sizes, package.json dependencies, project config, build toolchain) and returns what is missing, which copy-verbatim files were altered, which packages are absent, whether the config merge expo-router needs was done, and whether the installed Xcode can build this project at all. Catches the ways a long recipe goes wrong, each of which fails silently or points somewhere else.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| appId | Yes | the share code you passed to emit_app | |
| files | Yes | what you actually wrote: { path, bytes } per file, path relative to the project root. `bytes` must be the file's size in BYTES on disk (what `wc -c` reports), not its character count — the two differ for any file containing a non-ASCII character. | |
| config | No | ||
| toolchain | No | ||
| dependencies | No | the keys of package.json's dependencies |