[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-expo-expo-app-clip":3,"mdc-w07ehi-key":34,"related-repo-expo-expo-app-clip":3452,"related-org-expo-expo-app-clip":3552},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":32,"mdContent":33},"expo-app-clip","add iOS App Clip targets to Expo","Framework (OSS). Add an iOS App Clip target to an Expo app. Use when the user mentions App Clip, AASA, apple-app-site-association, appclips, smart app banner, or wants to ship a lightweight iOS Clip invoked from a URL alongside their parent app.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"expo","Expo","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fexpo.png",[12,16,17,20],{"name":13,"slug":14,"type":15},"React Native","react-native","tag",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},"iOS","ios",{"name":21,"slug":22,"type":15},"Mobile","mobile",2190,"https:\u002F\u002Fgithub.com\u002Fexpo\u002Fskills","2026-07-24T05:36:46.195935",null,111,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":31},[],"A collection of AI agent skills for working with Expo projects and Expo Application Services","https:\u002F\u002Fgithub.com\u002Fexpo\u002Fskills\u002Ftree\u002FHEAD\u002Fplugins\u002Fexpo\u002Fskills\u002Fexpo-app-clip","---\nname: expo-app-clip\ndescription: Framework (OSS). Add an iOS App Clip target to an Expo app. Use when the user mentions App Clip, AASA, apple-app-site-association, appclips, smart app banner, or wants to ship a lightweight iOS Clip invoked from a URL alongside their parent app.\n---\n\n# Add an App Clip to an Expo App\n\n> **Requirements.** Adding the App Clip target is open source. Shipping one requires an Apple Developer Program membership and App Store review, and the AASA file must be served over HTTPS on your domain (any HTTPS host works; EAS Hosting is one option). Building via EAS Build or `bunx testflight` uses your EAS plan's build minutes. See https:\u002F\u002Fexpo.dev\u002Fpricing and https:\u002F\u002Fdeveloper.apple.com\u002Fapp-clips\u002F.\n\nAdds an iOS App Clip target to an Expo project. The Clip lives in `targets\u002Fclip\u002F`, ships alongside the parent app, and is invoked from a URL on the app's domain via an Apple App Site Association (AASA) file.\n\nThe parent app's bundle ID becomes `com.\u003Cusername>.\u003Capp-name>` and the Clip's is automatically derived as `\u003Cparent>.clip` (e.g. `com.bacon.may20.clip`).\n\n## 1. Set `bundleIdentifier` and `appleTeamId`\n\n`bun create target` warns if these are missing. Add to `app.json`:\n\n```json\n{\n  \"expo\": {\n    \"ios\": {\n      \"bundleIdentifier\": \"com.\u003Cusername>.\u003Capp-name>\",\n      \"appleTeamId\": \"XX57RJ5UTD\"\n    }\n  }\n}\n```\n\n## 2. Add the App Clip target\n\n```sh\nbun create target clip\n```\n\nThis installs [`@bacons\u002Fapple-targets`](https:\u002F\u002Fgithub.com\u002FEvanBacon\u002Fexpo-apple-targets), adds it to the `plugins` array in `app.json`, and writes:\n\n- `targets\u002Fclip\u002Fexpo-target.config.js` — the target's config plugin\n- `targets\u002Fclip\u002FInfo.plist` — Clip Info.plist\n- `targets\u002Fclip\u002FAppDelegate.swift`, `Assets.xcassets`, etc.\n\nPick a good icon or reuse the existing one defined in the app — check it with `bunx expo config` under the `icon` or `ios.icon` key.\n\n## 3. Wire up associated domains\n\nThe parent app and the Clip each need the Associated Domains entitlement pointing at the domain that hosts the AASA file.\n\nIn `app.json`, add both `applinks:` (parent) and `appclips:` (Clip invocation) entries:\n\n```json\n{\n  \"expo\": {\n    \"ios\": {\n      \"associatedDomains\": [\n        \"applinks:may20.expo.app\",\n        \"appclips:may20.expo.app\"\n      ]\n    }\n  }\n}\n```\n\nIn `targets\u002Fclip\u002Fexpo-target.config.js`, declare the Clip's entitlement:\n\n```js\n\u002F** @type {import('@bacons\u002Fapple-targets\u002Fapp.plugin').ConfigFunction} *\u002F\nmodule.exports = (config) => ({\n  type: \"clip\",\n  icon: \"https:\u002F\u002Fgithub.com\u002Fexpo.png\",\n  entitlements: {\n    \"com.apple.developer.associated-domains\": [\"appclips:may20.expo.app\"],\n  },\n});\n```\n\n> If you skip this, `expo prebuild` will print: `Apple App Clip may require the associated domains entitlement but none were found`.\n\n## 4. Register bundle IDs and create the App Store entry\n\n```sh\nbunx setup-safari\n```\n\nThis logs in to the Apple Developer account, registers `com.bacon.may20`, creates the App Store Connect entry, and prints:\n\n- A starter `apple-app-site-association` JSON\n- A `\u003Cmeta name=\"apple-itunes-app\">` tag with the iTunes app id\n- Team ID, iTunes ID, and Bundle ID\n\n## 5. Host the AASA file\n\nApp Clips are invoked when iOS fetches `https:\u002F\u002F\u003Cyour-domain>\u002F.well-known\u002Fapple-app-site-association` and finds a matching `appclips` entry.\n\n```sh\nmkdir -p public\u002F.well-known\ntouch public\u002F.well-known\u002Fapple-app-site-association\n```\n\nPaste the JSON `setup-safari` printed, but **add an `appclips` block** for the Clip's full app ID (`\u003CTeamID>.\u003CClipBundleID>`). The output of `setup-safari` only covers the parent app:\n\n```json\n{\n  \"applinks\": {\n    \"details\": [\n      {\n        \"appIDs\": [\"XX57RJ5UTD.com.bacon.may20\"],\n        \"components\": [{ \"\u002F\": \"*\", \"comment\": \"Matches all routes\" }]\n      }\n    ]\n  },\n  \"appclips\": {\n    \"apps\": [\"XX57RJ5UTD.com.bacon.may20.clip\"]\n  },\n  \"activitycontinuation\": {\n    \"apps\": [\"XX57RJ5UTD.com.bacon.may20\"]\n  },\n  \"webcredentials\": {\n    \"apps\": [\"XX57RJ5UTD.com.bacon.may20\"]\n  }\n}\n```\n\nNotes:\n\n- The file has **no extension** and **no `Content-Type` requirements** beyond being served as-is. Expo Router static export serves files in `public\u002F` verbatim.\n- The `appclips` block is what lets a URL on the domain launch the Clip.\n- `webcredentials` is used for sharing credentials between the website, parent app, and the App Clip.\n- `activitycontinuation` is optional and used for sharing the link between mobile and desktop. Must be used with `Head` from expo-router — see https:\u002F\u002Fdocs.expo.dev\u002Frouter\u002Fadvanced\u002Fapple-handoff\u002F\n- Notation and route-disabling details: https:\u002F\u002Fsosumi.ai\u002Fdocumentation\u002Fxcode\u002Fsupporting-associated-domains\n\n## 6. Add the Smart App Banner meta tag\n\nCreate `src\u002Fapp\u002F+html.tsx` (Expo Router's HTML shell) and add the tag from `setup-safari`. Create the versioned template if it doesn't exist:\n\n```sh\nbunx expo customize src\u002Fapp\u002F+html.tsx\n```\n\nAdd the meta tag to the `\u003Chead>`:\n\n```tsx\nimport { ScrollViewStyleReset } from \"expo-router\u002Fhtml\";\n\nexport default function Root({ children }: { children: React.ReactNode }) {\n  return (\n    \u003Chtml lang=\"en\">\n      \u003Chead>\n        \u003Cmeta charSet=\"utf-8\" \u002F>\n        \u003Cmeta httpEquiv=\"X-UA-Compatible\" content=\"IE=edge\" \u002F>\n        \u003Cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1\" \u002F>\n        \u003Cmeta name=\"apple-itunes-app\" content=\"app-id=6771566491\" \u002F>\n        \u003CScrollViewStyleReset \u002F>\n      \u003C\u002Fhead>\n      \u003Cbody>{children}\u003C\u002Fbody>\n    \u003C\u002Fhtml>\n  );\n}\n```\n\nTo make the website show the App Clip card instead of the install card, use:\n\n```html\n\u003Cmeta\n  name=\"apple-itunes-app\"\n  content=\"app-id=6771566491, app-clip-bundle-id=com.bacon.may20.clip, app-clip-display=card\"\n\u002F>\n```\n\n## 7. Deploy the website\n\nThe AASA file must be live before iOS will trust the association. Use [EAS Hosting](https:\u002F\u002Fdocs.expo.dev\u002Feas\u002Fhosting\u002F):\n\n```sh\nbunx expo export -p web\neas deploy --prod\n```\n\nThis publishes the site (including `\u002F.well-known\u002Fapple-app-site-association`) at `https:\u002F\u002F\u003Cslug>.expo.app`. Verify:\n\n```sh\ncurl https:\u002F\u002Fmay20.expo.app\u002F.well-known\u002Fapple-app-site-association\n```\n\n## 8. Mirror permissions\n\nInspect the parent app's permissions after prebuild:\n\n```sh\nnpx expo config --type introspect\n```\n\nLook at the `infoPlist` object — mirror the permission keys in the App Clip's `Info.plist` so matching APIs can be used from the Clip.\n\nSet `deploymentTarget: \"17.6\"` in the Clip's target config — App Clips have a higher minimum size limit in iOS 17.6.\n\nIf the app uses push notifications or location services, add to the App Clip's `Info.plist` to request the necessary permissions:\n\n```xml\n\u003Ckey>NSAppClip\u003C\u002Fkey>\n\u003Cdict>\n  \u003Ckey>NSAppClipRequestEphemeralUserNotification\u003C\u002Fkey>\n  \u003Cfalse\u002F>\n  \u003Ckey>NSAppClipRequestLocationConfirmation\u003C\u002Fkey>\n  \u003Ctrue\u002F>\n\u003C\u002Fdict>\n```\n\n## 9. Build and submit to TestFlight\n\n```sh\nbunx testflight\n```\n\nThis will:\n\n1. Generate an `eas.json` if missing.\n2. Set up credentials for **both** targets (parent + Clip). Each gets its own provisioning profile but can share a single Distribution Certificate.\n3. Sync capabilities — note `Enabled: Associated Domains` for the Clip target.\n4. Build, upload, and schedule a TestFlight submission.\n\n## 10. Configure App Clip metadata\n\nPull existing App Store metadata to local:\n\n```sh\neas metadata:pull\n```\n\nAdd `apple.appClip` to `store.config.json`. Up to 3 invocation URLs can launch the Clip from a web page:\n\n```json\n{\n  \"configVersion\": 0,\n  \"apple\": {\n    \"appClip\": {\n      \"defaultExperience\": {\n        \"action\": \"PLAY\",\n        \"releaseWithAppStoreVersion\": true,\n        \"reviewDetail\": {\n          \"invocationUrls\": [\"https:\u002F\u002Fmay20.expo.app\u002F\", null, null]\n        },\n        \"info\": {\n          \"en-US\": {\n            \"subtitle\": \"Instantly native with Expo\",\n            \"headerImage\": \"store\u002Fapple\u002Fapp-clip\u002Fen-US\u002Fasc-app-clip.png\"\n          }\n        }\n      }\n    }\n  }\n}\n```\n\nThe `headerImage` must be a 1800x1200 PNG with no opacity.\n\nPush back to the store:\n\n```sh\neas metadata:push\n```\n\nApple's recommended App Clip metadata guidelines: https:\u002F\u002Fsosumi.ai\u002Fdocumentation\u002Fappclip\u002Fconfiguring-the-launch-experience-of-your-app-clip\n\n## What you get\n\n- Parent app target: `com.bacon.may20`\n- App Clip target: `com.bacon.may20.clip`, lives in `targets\u002Fclip\u002F`\n- AASA hosted at `https:\u002F\u002Fmay20.expo.app\u002F.well-known\u002Fapple-app-site-association`\n- Smart App Banner meta tag on every web route\n- Every route linked to its native counterpart\n- TestFlight build of the parent app with the Clip embedded\n\nOnce Apple invokes the Clip from a URL on the domain, iOS opens `targets\u002Fclip\u002F`'s entry point which loads the React Native app.\n\n## Native detection (optional)\n\nTo let JS detect when it's running inside an App Clip and present an install prompt for the full app, create a local Expo module (`bunx create-expo-module --local`) that exposes `navigator.appClip.prompt()`.\n\nSee [.\u002Freferences\u002Fnative-module.md](.\u002Freferences\u002Fnative-module.md) for the Swift module, TypeScript interface, and usage.\n\n## References\n\n- .\u002Freferences\u002Fnative-module.md — Local Expo module to detect App Clip context and present the SKOverlay install prompt\n\n## Submitting Feedback\nIf you encounter errors, misleading or outdated information in this skill, report it so Expo can improve:\n```bash\nnpx --yes submit-expo-feedback@latest --category skills --subject \"expo-app-clip\" \"\u003Cactionable feedback>\"\n```\nOnly submit when you have something specific and actionable to report. Include as much relevant context as possible.\n",{"data":35,"body":36},{"name":4,"description":6},{"type":37,"children":38},"root",[39,48,91,104,133,153,172,351,357,389,422,468,497,503,508,536,689,700,939,962,968,988,1001,1035,1041,1062,1100,1142,1600,1605,1699,1705,1725,1754,1766,2289,2294,2372,2378,2391,2441,2462,2482,2488,2493,2527,2548,2561,2573,2638,2644,2663,2668,2715,2721,2726,2745,2766,3192,3203,3208,3227,3238,3244,3300,3312,3318,3338,3350,3356,3364,3370,3375,3441,3446],{"type":40,"tag":41,"props":42,"children":44},"element","h1",{"id":43},"add-an-app-clip-to-an-expo-app",[45],{"type":46,"value":47},"text","Add an App Clip to an Expo App",{"type":40,"tag":49,"props":50,"children":51},"blockquote",{},[52],{"type":40,"tag":53,"props":54,"children":55},"p",{},[56,62,64,71,73,81,83,89],{"type":40,"tag":57,"props":58,"children":59},"strong",{},[60],{"type":46,"value":61},"Requirements.",{"type":46,"value":63}," Adding the App Clip target is open source. Shipping one requires an Apple Developer Program membership and App Store review, and the AASA file must be served over HTTPS on your domain (any HTTPS host works; EAS Hosting is one option). Building via EAS Build or ",{"type":40,"tag":65,"props":66,"children":68},"code",{"className":67},[],[69],{"type":46,"value":70},"bunx testflight",{"type":46,"value":72}," uses your EAS plan's build minutes. See ",{"type":40,"tag":74,"props":75,"children":79},"a",{"href":76,"rel":77},"https:\u002F\u002Fexpo.dev\u002Fpricing",[78],"nofollow",[80],{"type":46,"value":76},{"type":46,"value":82}," and ",{"type":40,"tag":74,"props":84,"children":87},{"href":85,"rel":86},"https:\u002F\u002Fdeveloper.apple.com\u002Fapp-clips\u002F",[78],[88],{"type":46,"value":85},{"type":46,"value":90},".",{"type":40,"tag":53,"props":92,"children":93},{},[94,96,102],{"type":46,"value":95},"Adds an iOS App Clip target to an Expo project. The Clip lives in ",{"type":40,"tag":65,"props":97,"children":99},{"className":98},[],[100],{"type":46,"value":101},"targets\u002Fclip\u002F",{"type":46,"value":103},", ships alongside the parent app, and is invoked from a URL on the app's domain via an Apple App Site Association (AASA) file.",{"type":40,"tag":53,"props":105,"children":106},{},[107,109,115,117,123,125,131],{"type":46,"value":108},"The parent app's bundle ID becomes ",{"type":40,"tag":65,"props":110,"children":112},{"className":111},[],[113],{"type":46,"value":114},"com.\u003Cusername>.\u003Capp-name>",{"type":46,"value":116}," and the Clip's is automatically derived as ",{"type":40,"tag":65,"props":118,"children":120},{"className":119},[],[121],{"type":46,"value":122},"\u003Cparent>.clip",{"type":46,"value":124}," (e.g. ",{"type":40,"tag":65,"props":126,"children":128},{"className":127},[],[129],{"type":46,"value":130},"com.bacon.may20.clip",{"type":46,"value":132},").",{"type":40,"tag":134,"props":135,"children":137},"h2",{"id":136},"_1-set-bundleidentifier-and-appleteamid",[138,140,146,147],{"type":46,"value":139},"1. Set ",{"type":40,"tag":65,"props":141,"children":143},{"className":142},[],[144],{"type":46,"value":145},"bundleIdentifier",{"type":46,"value":82},{"type":40,"tag":65,"props":148,"children":150},{"className":149},[],[151],{"type":46,"value":152},"appleTeamId",{"type":40,"tag":53,"props":154,"children":155},{},[156,162,164,170],{"type":40,"tag":65,"props":157,"children":159},{"className":158},[],[160],{"type":46,"value":161},"bun create target",{"type":46,"value":163}," warns if these are missing. Add to ",{"type":40,"tag":65,"props":165,"children":167},{"className":166},[],[168],{"type":46,"value":169},"app.json",{"type":46,"value":171},":",{"type":40,"tag":173,"props":174,"children":179},"pre",{"className":175,"code":176,"language":177,"meta":178,"style":178},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"expo\": {\n    \"ios\": {\n      \"bundleIdentifier\": \"com.\u003Cusername>.\u003Capp-name>\",\n      \"appleTeamId\": \"XX57RJ5UTD\"\n    }\n  }\n}\n","json","",[180],{"type":40,"tag":65,"props":181,"children":182},{"__ignoreMap":178},[183,195,223,249,290,324,333,342],{"type":40,"tag":184,"props":185,"children":188},"span",{"class":186,"line":187},"line",1,[189],{"type":40,"tag":184,"props":190,"children":192},{"style":191},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[193],{"type":46,"value":194},"{\n",{"type":40,"tag":184,"props":196,"children":198},{"class":186,"line":197},2,[199,204,209,214,218],{"type":40,"tag":184,"props":200,"children":201},{"style":191},[202],{"type":46,"value":203},"  \"",{"type":40,"tag":184,"props":205,"children":207},{"style":206},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[208],{"type":46,"value":8},{"type":40,"tag":184,"props":210,"children":211},{"style":191},[212],{"type":46,"value":213},"\"",{"type":40,"tag":184,"props":215,"children":216},{"style":191},[217],{"type":46,"value":171},{"type":40,"tag":184,"props":219,"children":220},{"style":191},[221],{"type":46,"value":222}," {\n",{"type":40,"tag":184,"props":224,"children":226},{"class":186,"line":225},3,[227,232,237,241,245],{"type":40,"tag":184,"props":228,"children":229},{"style":191},[230],{"type":46,"value":231},"    \"",{"type":40,"tag":184,"props":233,"children":235},{"style":234},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[236],{"type":46,"value":19},{"type":40,"tag":184,"props":238,"children":239},{"style":191},[240],{"type":46,"value":213},{"type":40,"tag":184,"props":242,"children":243},{"style":191},[244],{"type":46,"value":171},{"type":40,"tag":184,"props":246,"children":247},{"style":191},[248],{"type":46,"value":222},{"type":40,"tag":184,"props":250,"children":252},{"class":186,"line":251},4,[253,258,263,267,271,276,281,285],{"type":40,"tag":184,"props":254,"children":255},{"style":191},[256],{"type":46,"value":257},"      \"",{"type":40,"tag":184,"props":259,"children":261},{"style":260},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[262],{"type":46,"value":145},{"type":40,"tag":184,"props":264,"children":265},{"style":191},[266],{"type":46,"value":213},{"type":40,"tag":184,"props":268,"children":269},{"style":191},[270],{"type":46,"value":171},{"type":40,"tag":184,"props":272,"children":273},{"style":191},[274],{"type":46,"value":275}," \"",{"type":40,"tag":184,"props":277,"children":279},{"style":278},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[280],{"type":46,"value":114},{"type":40,"tag":184,"props":282,"children":283},{"style":191},[284],{"type":46,"value":213},{"type":40,"tag":184,"props":286,"children":287},{"style":191},[288],{"type":46,"value":289},",\n",{"type":40,"tag":184,"props":291,"children":293},{"class":186,"line":292},5,[294,298,302,306,310,314,319],{"type":40,"tag":184,"props":295,"children":296},{"style":191},[297],{"type":46,"value":257},{"type":40,"tag":184,"props":299,"children":300},{"style":260},[301],{"type":46,"value":152},{"type":40,"tag":184,"props":303,"children":304},{"style":191},[305],{"type":46,"value":213},{"type":40,"tag":184,"props":307,"children":308},{"style":191},[309],{"type":46,"value":171},{"type":40,"tag":184,"props":311,"children":312},{"style":191},[313],{"type":46,"value":275},{"type":40,"tag":184,"props":315,"children":316},{"style":278},[317],{"type":46,"value":318},"XX57RJ5UTD",{"type":40,"tag":184,"props":320,"children":321},{"style":191},[322],{"type":46,"value":323},"\"\n",{"type":40,"tag":184,"props":325,"children":327},{"class":186,"line":326},6,[328],{"type":40,"tag":184,"props":329,"children":330},{"style":191},[331],{"type":46,"value":332},"    }\n",{"type":40,"tag":184,"props":334,"children":336},{"class":186,"line":335},7,[337],{"type":40,"tag":184,"props":338,"children":339},{"style":191},[340],{"type":46,"value":341},"  }\n",{"type":40,"tag":184,"props":343,"children":345},{"class":186,"line":344},8,[346],{"type":40,"tag":184,"props":347,"children":348},{"style":191},[349],{"type":46,"value":350},"}\n",{"type":40,"tag":134,"props":352,"children":354},{"id":353},"_2-add-the-app-clip-target",[355],{"type":46,"value":356},"2. Add the App Clip target",{"type":40,"tag":173,"props":358,"children":362},{"className":359,"code":360,"language":361,"meta":178,"style":178},"language-sh shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","bun create target clip\n","sh",[363],{"type":40,"tag":65,"props":364,"children":365},{"__ignoreMap":178},[366],{"type":40,"tag":184,"props":367,"children":368},{"class":186,"line":187},[369,374,379,384],{"type":40,"tag":184,"props":370,"children":371},{"style":234},[372],{"type":46,"value":373},"bun",{"type":40,"tag":184,"props":375,"children":376},{"style":278},[377],{"type":46,"value":378}," create",{"type":40,"tag":184,"props":380,"children":381},{"style":278},[382],{"type":46,"value":383}," target",{"type":40,"tag":184,"props":385,"children":386},{"style":278},[387],{"type":46,"value":388}," clip\n",{"type":40,"tag":53,"props":390,"children":391},{},[392,394,405,407,413,415,420],{"type":46,"value":393},"This installs ",{"type":40,"tag":74,"props":395,"children":398},{"href":396,"rel":397},"https:\u002F\u002Fgithub.com\u002FEvanBacon\u002Fexpo-apple-targets",[78],[399],{"type":40,"tag":65,"props":400,"children":402},{"className":401},[],[403],{"type":46,"value":404},"@bacons\u002Fapple-targets",{"type":46,"value":406},", adds it to the ",{"type":40,"tag":65,"props":408,"children":410},{"className":409},[],[411],{"type":46,"value":412},"plugins",{"type":46,"value":414}," array in ",{"type":40,"tag":65,"props":416,"children":418},{"className":417},[],[419],{"type":46,"value":169},{"type":46,"value":421},", and writes:",{"type":40,"tag":423,"props":424,"children":425},"ul",{},[426,438,449],{"type":40,"tag":427,"props":428,"children":429},"li",{},[430,436],{"type":40,"tag":65,"props":431,"children":433},{"className":432},[],[434],{"type":46,"value":435},"targets\u002Fclip\u002Fexpo-target.config.js",{"type":46,"value":437}," — the target's config plugin",{"type":40,"tag":427,"props":439,"children":440},{},[441,447],{"type":40,"tag":65,"props":442,"children":444},{"className":443},[],[445],{"type":46,"value":446},"targets\u002Fclip\u002FInfo.plist",{"type":46,"value":448}," — Clip Info.plist",{"type":40,"tag":427,"props":450,"children":451},{},[452,458,460,466],{"type":40,"tag":65,"props":453,"children":455},{"className":454},[],[456],{"type":46,"value":457},"targets\u002Fclip\u002FAppDelegate.swift",{"type":46,"value":459},", ",{"type":40,"tag":65,"props":461,"children":463},{"className":462},[],[464],{"type":46,"value":465},"Assets.xcassets",{"type":46,"value":467},", etc.",{"type":40,"tag":53,"props":469,"children":470},{},[471,473,479,481,487,489,495],{"type":46,"value":472},"Pick a good icon or reuse the existing one defined in the app — check it with ",{"type":40,"tag":65,"props":474,"children":476},{"className":475},[],[477],{"type":46,"value":478},"bunx expo config",{"type":46,"value":480}," under the ",{"type":40,"tag":65,"props":482,"children":484},{"className":483},[],[485],{"type":46,"value":486},"icon",{"type":46,"value":488}," or ",{"type":40,"tag":65,"props":490,"children":492},{"className":491},[],[493],{"type":46,"value":494},"ios.icon",{"type":46,"value":496}," key.",{"type":40,"tag":134,"props":498,"children":500},{"id":499},"_3-wire-up-associated-domains",[501],{"type":46,"value":502},"3. Wire up associated domains",{"type":40,"tag":53,"props":504,"children":505},{},[506],{"type":46,"value":507},"The parent app and the Clip each need the Associated Domains entitlement pointing at the domain that hosts the AASA file.",{"type":40,"tag":53,"props":509,"children":510},{},[511,513,518,520,526,528,534],{"type":46,"value":512},"In ",{"type":40,"tag":65,"props":514,"children":516},{"className":515},[],[517],{"type":46,"value":169},{"type":46,"value":519},", add both ",{"type":40,"tag":65,"props":521,"children":523},{"className":522},[],[524],{"type":46,"value":525},"applinks:",{"type":46,"value":527}," (parent) and ",{"type":40,"tag":65,"props":529,"children":531},{"className":530},[],[532],{"type":46,"value":533},"appclips:",{"type":46,"value":535}," (Clip invocation) entries:",{"type":40,"tag":173,"props":537,"children":539},{"className":175,"code":538,"language":177,"meta":178,"style":178},"{\n  \"expo\": {\n    \"ios\": {\n      \"associatedDomains\": [\n        \"applinks:may20.expo.app\",\n        \"appclips:may20.expo.app\"\n      ]\n    }\n  }\n}\n",[540],{"type":40,"tag":65,"props":541,"children":542},{"__ignoreMap":178},[543,550,573,596,621,642,658,666,673,681],{"type":40,"tag":184,"props":544,"children":545},{"class":186,"line":187},[546],{"type":40,"tag":184,"props":547,"children":548},{"style":191},[549],{"type":46,"value":194},{"type":40,"tag":184,"props":551,"children":552},{"class":186,"line":197},[553,557,561,565,569],{"type":40,"tag":184,"props":554,"children":555},{"style":191},[556],{"type":46,"value":203},{"type":40,"tag":184,"props":558,"children":559},{"style":206},[560],{"type":46,"value":8},{"type":40,"tag":184,"props":562,"children":563},{"style":191},[564],{"type":46,"value":213},{"type":40,"tag":184,"props":566,"children":567},{"style":191},[568],{"type":46,"value":171},{"type":40,"tag":184,"props":570,"children":571},{"style":191},[572],{"type":46,"value":222},{"type":40,"tag":184,"props":574,"children":575},{"class":186,"line":225},[576,580,584,588,592],{"type":40,"tag":184,"props":577,"children":578},{"style":191},[579],{"type":46,"value":231},{"type":40,"tag":184,"props":581,"children":582},{"style":234},[583],{"type":46,"value":19},{"type":40,"tag":184,"props":585,"children":586},{"style":191},[587],{"type":46,"value":213},{"type":40,"tag":184,"props":589,"children":590},{"style":191},[591],{"type":46,"value":171},{"type":40,"tag":184,"props":593,"children":594},{"style":191},[595],{"type":46,"value":222},{"type":40,"tag":184,"props":597,"children":598},{"class":186,"line":251},[599,603,608,612,616],{"type":40,"tag":184,"props":600,"children":601},{"style":191},[602],{"type":46,"value":257},{"type":40,"tag":184,"props":604,"children":605},{"style":260},[606],{"type":46,"value":607},"associatedDomains",{"type":40,"tag":184,"props":609,"children":610},{"style":191},[611],{"type":46,"value":213},{"type":40,"tag":184,"props":613,"children":614},{"style":191},[615],{"type":46,"value":171},{"type":40,"tag":184,"props":617,"children":618},{"style":191},[619],{"type":46,"value":620}," [\n",{"type":40,"tag":184,"props":622,"children":623},{"class":186,"line":292},[624,629,634,638],{"type":40,"tag":184,"props":625,"children":626},{"style":191},[627],{"type":46,"value":628},"        \"",{"type":40,"tag":184,"props":630,"children":631},{"style":278},[632],{"type":46,"value":633},"applinks:may20.expo.app",{"type":40,"tag":184,"props":635,"children":636},{"style":191},[637],{"type":46,"value":213},{"type":40,"tag":184,"props":639,"children":640},{"style":191},[641],{"type":46,"value":289},{"type":40,"tag":184,"props":643,"children":644},{"class":186,"line":326},[645,649,654],{"type":40,"tag":184,"props":646,"children":647},{"style":191},[648],{"type":46,"value":628},{"type":40,"tag":184,"props":650,"children":651},{"style":278},[652],{"type":46,"value":653},"appclips:may20.expo.app",{"type":40,"tag":184,"props":655,"children":656},{"style":191},[657],{"type":46,"value":323},{"type":40,"tag":184,"props":659,"children":660},{"class":186,"line":335},[661],{"type":40,"tag":184,"props":662,"children":663},{"style":191},[664],{"type":46,"value":665},"      ]\n",{"type":40,"tag":184,"props":667,"children":668},{"class":186,"line":344},[669],{"type":40,"tag":184,"props":670,"children":671},{"style":191},[672],{"type":46,"value":332},{"type":40,"tag":184,"props":674,"children":676},{"class":186,"line":675},9,[677],{"type":40,"tag":184,"props":678,"children":679},{"style":191},[680],{"type":46,"value":341},{"type":40,"tag":184,"props":682,"children":684},{"class":186,"line":683},10,[685],{"type":40,"tag":184,"props":686,"children":687},{"style":191},[688],{"type":46,"value":350},{"type":40,"tag":53,"props":690,"children":691},{},[692,693,698],{"type":46,"value":512},{"type":40,"tag":65,"props":694,"children":696},{"className":695},[],[697],{"type":46,"value":435},{"type":46,"value":699},", declare the Clip's entitlement:",{"type":40,"tag":173,"props":701,"children":705},{"className":702,"code":703,"language":704,"meta":178,"style":178},"language-js shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F** @type {import('@bacons\u002Fapple-targets\u002Fapp.plugin').ConfigFunction} *\u002F\nmodule.exports = (config) => ({\n  type: \"clip\",\n  icon: \"https:\u002F\u002Fgithub.com\u002Fexpo.png\",\n  entitlements: {\n    \"com.apple.developer.associated-domains\": [\"appclips:may20.expo.app\"],\n  },\n});\n","js",[706],{"type":40,"tag":65,"props":707,"children":708},{"__ignoreMap":178},[709,751,794,824,853,869,915,923],{"type":40,"tag":184,"props":710,"children":711},{"class":186,"line":187},[712,718,724,730,735,741,746],{"type":40,"tag":184,"props":713,"children":715},{"style":714},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[716],{"type":46,"value":717},"\u002F** ",{"type":40,"tag":184,"props":719,"children":721},{"style":720},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[722],{"type":46,"value":723},"@",{"type":40,"tag":184,"props":725,"children":727},{"style":726},"--shiki-light:#9C3EDA;--shiki-light-font-style:italic;--shiki-default:#C792EA;--shiki-default-font-style:italic;--shiki-dark:#C792EA;--shiki-dark-font-style:italic",[728],{"type":46,"value":729},"type",{"type":40,"tag":184,"props":731,"children":732},{"style":720},[733],{"type":46,"value":734}," {",{"type":40,"tag":184,"props":736,"children":738},{"style":737},"--shiki-light:#E2931D;--shiki-light-font-style:italic;--shiki-default:#FFCB6B;--shiki-default-font-style:italic;--shiki-dark:#FFCB6B;--shiki-dark-font-style:italic",[739],{"type":46,"value":740},"import('@bacons\u002Fapple-targets\u002Fapp.plugin').ConfigFunction",{"type":40,"tag":184,"props":742,"children":743},{"style":720},[744],{"type":46,"value":745},"}",{"type":40,"tag":184,"props":747,"children":748},{"style":714},[749],{"type":46,"value":750}," *\u002F\n",{"type":40,"tag":184,"props":752,"children":753},{"class":186,"line":197},[754,759,764,769,775,780,785,790],{"type":40,"tag":184,"props":755,"children":756},{"style":191},[757],{"type":46,"value":758},"module.exports",{"type":40,"tag":184,"props":760,"children":761},{"style":191},[762],{"type":46,"value":763}," =",{"type":40,"tag":184,"props":765,"children":766},{"style":191},[767],{"type":46,"value":768}," (",{"type":40,"tag":184,"props":770,"children":772},{"style":771},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[773],{"type":46,"value":774},"config",{"type":40,"tag":184,"props":776,"children":777},{"style":191},[778],{"type":46,"value":779},")",{"type":40,"tag":184,"props":781,"children":782},{"style":206},[783],{"type":46,"value":784}," =>",{"type":40,"tag":184,"props":786,"children":788},{"style":787},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[789],{"type":46,"value":768},{"type":40,"tag":184,"props":791,"children":792},{"style":191},[793],{"type":46,"value":194},{"type":40,"tag":184,"props":795,"children":796},{"class":186,"line":225},[797,803,807,811,816,820],{"type":40,"tag":184,"props":798,"children":800},{"style":799},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[801],{"type":46,"value":802},"  type",{"type":40,"tag":184,"props":804,"children":805},{"style":191},[806],{"type":46,"value":171},{"type":40,"tag":184,"props":808,"children":809},{"style":191},[810],{"type":46,"value":275},{"type":40,"tag":184,"props":812,"children":813},{"style":278},[814],{"type":46,"value":815},"clip",{"type":40,"tag":184,"props":817,"children":818},{"style":191},[819],{"type":46,"value":213},{"type":40,"tag":184,"props":821,"children":822},{"style":191},[823],{"type":46,"value":289},{"type":40,"tag":184,"props":825,"children":826},{"class":186,"line":251},[827,832,836,840,845,849],{"type":40,"tag":184,"props":828,"children":829},{"style":799},[830],{"type":46,"value":831},"  icon",{"type":40,"tag":184,"props":833,"children":834},{"style":191},[835],{"type":46,"value":171},{"type":40,"tag":184,"props":837,"children":838},{"style":191},[839],{"type":46,"value":275},{"type":40,"tag":184,"props":841,"children":842},{"style":278},[843],{"type":46,"value":844},"https:\u002F\u002Fgithub.com\u002Fexpo.png",{"type":40,"tag":184,"props":846,"children":847},{"style":191},[848],{"type":46,"value":213},{"type":40,"tag":184,"props":850,"children":851},{"style":191},[852],{"type":46,"value":289},{"type":40,"tag":184,"props":854,"children":855},{"class":186,"line":292},[856,861,865],{"type":40,"tag":184,"props":857,"children":858},{"style":799},[859],{"type":46,"value":860},"  entitlements",{"type":40,"tag":184,"props":862,"children":863},{"style":191},[864],{"type":46,"value":171},{"type":40,"tag":184,"props":866,"children":867},{"style":191},[868],{"type":46,"value":222},{"type":40,"tag":184,"props":870,"children":871},{"class":186,"line":326},[872,876,881,885,889,894,898,902,906,911],{"type":40,"tag":184,"props":873,"children":874},{"style":191},[875],{"type":46,"value":231},{"type":40,"tag":184,"props":877,"children":878},{"style":799},[879],{"type":46,"value":880},"com.apple.developer.associated-domains",{"type":40,"tag":184,"props":882,"children":883},{"style":191},[884],{"type":46,"value":213},{"type":40,"tag":184,"props":886,"children":887},{"style":191},[888],{"type":46,"value":171},{"type":40,"tag":184,"props":890,"children":891},{"style":787},[892],{"type":46,"value":893}," [",{"type":40,"tag":184,"props":895,"children":896},{"style":191},[897],{"type":46,"value":213},{"type":40,"tag":184,"props":899,"children":900},{"style":278},[901],{"type":46,"value":653},{"type":40,"tag":184,"props":903,"children":904},{"style":191},[905],{"type":46,"value":213},{"type":40,"tag":184,"props":907,"children":908},{"style":787},[909],{"type":46,"value":910},"]",{"type":40,"tag":184,"props":912,"children":913},{"style":191},[914],{"type":46,"value":289},{"type":40,"tag":184,"props":916,"children":917},{"class":186,"line":335},[918],{"type":40,"tag":184,"props":919,"children":920},{"style":191},[921],{"type":46,"value":922},"  },\n",{"type":40,"tag":184,"props":924,"children":925},{"class":186,"line":344},[926,930,934],{"type":40,"tag":184,"props":927,"children":928},{"style":191},[929],{"type":46,"value":745},{"type":40,"tag":184,"props":931,"children":932},{"style":787},[933],{"type":46,"value":779},{"type":40,"tag":184,"props":935,"children":936},{"style":191},[937],{"type":46,"value":938},";\n",{"type":40,"tag":49,"props":940,"children":941},{},[942],{"type":40,"tag":53,"props":943,"children":944},{},[945,947,953,955,961],{"type":46,"value":946},"If you skip this, ",{"type":40,"tag":65,"props":948,"children":950},{"className":949},[],[951],{"type":46,"value":952},"expo prebuild",{"type":46,"value":954}," will print: ",{"type":40,"tag":65,"props":956,"children":958},{"className":957},[],[959],{"type":46,"value":960},"Apple App Clip may require the associated domains entitlement but none were found",{"type":46,"value":90},{"type":40,"tag":134,"props":963,"children":965},{"id":964},"_4-register-bundle-ids-and-create-the-app-store-entry",[966],{"type":46,"value":967},"4. Register bundle IDs and create the App Store entry",{"type":40,"tag":173,"props":969,"children":971},{"className":359,"code":970,"language":361,"meta":178,"style":178},"bunx setup-safari\n",[972],{"type":40,"tag":65,"props":973,"children":974},{"__ignoreMap":178},[975],{"type":40,"tag":184,"props":976,"children":977},{"class":186,"line":187},[978,983],{"type":40,"tag":184,"props":979,"children":980},{"style":234},[981],{"type":46,"value":982},"bunx",{"type":40,"tag":184,"props":984,"children":985},{"style":278},[986],{"type":46,"value":987}," setup-safari\n",{"type":40,"tag":53,"props":989,"children":990},{},[991,993,999],{"type":46,"value":992},"This logs in to the Apple Developer account, registers ",{"type":40,"tag":65,"props":994,"children":996},{"className":995},[],[997],{"type":46,"value":998},"com.bacon.may20",{"type":46,"value":1000},", creates the App Store Connect entry, and prints:",{"type":40,"tag":423,"props":1002,"children":1003},{},[1004,1017,1030],{"type":40,"tag":427,"props":1005,"children":1006},{},[1007,1009,1015],{"type":46,"value":1008},"A starter ",{"type":40,"tag":65,"props":1010,"children":1012},{"className":1011},[],[1013],{"type":46,"value":1014},"apple-app-site-association",{"type":46,"value":1016}," JSON",{"type":40,"tag":427,"props":1018,"children":1019},{},[1020,1022,1028],{"type":46,"value":1021},"A ",{"type":40,"tag":65,"props":1023,"children":1025},{"className":1024},[],[1026],{"type":46,"value":1027},"\u003Cmeta name=\"apple-itunes-app\">",{"type":46,"value":1029}," tag with the iTunes app id",{"type":40,"tag":427,"props":1031,"children":1032},{},[1033],{"type":46,"value":1034},"Team ID, iTunes ID, and Bundle ID",{"type":40,"tag":134,"props":1036,"children":1038},{"id":1037},"_5-host-the-aasa-file",[1039],{"type":46,"value":1040},"5. Host the AASA file",{"type":40,"tag":53,"props":1042,"children":1043},{},[1044,1046,1052,1054,1060],{"type":46,"value":1045},"App Clips are invoked when iOS fetches ",{"type":40,"tag":65,"props":1047,"children":1049},{"className":1048},[],[1050],{"type":46,"value":1051},"https:\u002F\u002F\u003Cyour-domain>\u002F.well-known\u002Fapple-app-site-association",{"type":46,"value":1053}," and finds a matching ",{"type":40,"tag":65,"props":1055,"children":1057},{"className":1056},[],[1058],{"type":46,"value":1059},"appclips",{"type":46,"value":1061}," entry.",{"type":40,"tag":173,"props":1063,"children":1065},{"className":359,"code":1064,"language":361,"meta":178,"style":178},"mkdir -p public\u002F.well-known\ntouch public\u002F.well-known\u002Fapple-app-site-association\n",[1066],{"type":40,"tag":65,"props":1067,"children":1068},{"__ignoreMap":178},[1069,1087],{"type":40,"tag":184,"props":1070,"children":1071},{"class":186,"line":187},[1072,1077,1082],{"type":40,"tag":184,"props":1073,"children":1074},{"style":234},[1075],{"type":46,"value":1076},"mkdir",{"type":40,"tag":184,"props":1078,"children":1079},{"style":278},[1080],{"type":46,"value":1081}," -p",{"type":40,"tag":184,"props":1083,"children":1084},{"style":278},[1085],{"type":46,"value":1086}," public\u002F.well-known\n",{"type":40,"tag":184,"props":1088,"children":1089},{"class":186,"line":197},[1090,1095],{"type":40,"tag":184,"props":1091,"children":1092},{"style":234},[1093],{"type":46,"value":1094},"touch",{"type":40,"tag":184,"props":1096,"children":1097},{"style":278},[1098],{"type":46,"value":1099}," public\u002F.well-known\u002Fapple-app-site-association\n",{"type":40,"tag":53,"props":1101,"children":1102},{},[1103,1105,1111,1113,1125,1127,1133,1135,1140],{"type":46,"value":1104},"Paste the JSON ",{"type":40,"tag":65,"props":1106,"children":1108},{"className":1107},[],[1109],{"type":46,"value":1110},"setup-safari",{"type":46,"value":1112}," printed, but ",{"type":40,"tag":57,"props":1114,"children":1115},{},[1116,1118,1123],{"type":46,"value":1117},"add an ",{"type":40,"tag":65,"props":1119,"children":1121},{"className":1120},[],[1122],{"type":46,"value":1059},{"type":46,"value":1124}," block",{"type":46,"value":1126}," for the Clip's full app ID (",{"type":40,"tag":65,"props":1128,"children":1130},{"className":1129},[],[1131],{"type":46,"value":1132},"\u003CTeamID>.\u003CClipBundleID>",{"type":46,"value":1134},"). The output of ",{"type":40,"tag":65,"props":1136,"children":1138},{"className":1137},[],[1139],{"type":46,"value":1110},{"type":46,"value":1141}," only covers the parent app:",{"type":40,"tag":173,"props":1143,"children":1145},{"className":175,"code":1144,"language":177,"meta":178,"style":178},"{\n  \"applinks\": {\n    \"details\": [\n      {\n        \"appIDs\": [\"XX57RJ5UTD.com.bacon.may20\"],\n        \"components\": [{ \"\u002F\": \"*\", \"comment\": \"Matches all routes\" }]\n      }\n    ]\n  },\n  \"appclips\": {\n    \"apps\": [\"XX57RJ5UTD.com.bacon.may20.clip\"]\n  },\n  \"activitycontinuation\": {\n    \"apps\": [\"XX57RJ5UTD.com.bacon.may20\"]\n  },\n  \"webcredentials\": {\n    \"apps\": [\"XX57RJ5UTD.com.bacon.may20\"]\n  }\n}\n",[1146],{"type":40,"tag":65,"props":1147,"children":1148},{"__ignoreMap":178},[1149,1156,1180,1204,1212,1254,1349,1357,1365,1372,1395,1438,1446,1471,1511,1519,1544,1584,1592],{"type":40,"tag":184,"props":1150,"children":1151},{"class":186,"line":187},[1152],{"type":40,"tag":184,"props":1153,"children":1154},{"style":191},[1155],{"type":46,"value":194},{"type":40,"tag":184,"props":1157,"children":1158},{"class":186,"line":197},[1159,1163,1168,1172,1176],{"type":40,"tag":184,"props":1160,"children":1161},{"style":191},[1162],{"type":46,"value":203},{"type":40,"tag":184,"props":1164,"children":1165},{"style":206},[1166],{"type":46,"value":1167},"applinks",{"type":40,"tag":184,"props":1169,"children":1170},{"style":191},[1171],{"type":46,"value":213},{"type":40,"tag":184,"props":1173,"children":1174},{"style":191},[1175],{"type":46,"value":171},{"type":40,"tag":184,"props":1177,"children":1178},{"style":191},[1179],{"type":46,"value":222},{"type":40,"tag":184,"props":1181,"children":1182},{"class":186,"line":225},[1183,1187,1192,1196,1200],{"type":40,"tag":184,"props":1184,"children":1185},{"style":191},[1186],{"type":46,"value":231},{"type":40,"tag":184,"props":1188,"children":1189},{"style":234},[1190],{"type":46,"value":1191},"details",{"type":40,"tag":184,"props":1193,"children":1194},{"style":191},[1195],{"type":46,"value":213},{"type":40,"tag":184,"props":1197,"children":1198},{"style":191},[1199],{"type":46,"value":171},{"type":40,"tag":184,"props":1201,"children":1202},{"style":191},[1203],{"type":46,"value":620},{"type":40,"tag":184,"props":1205,"children":1206},{"class":186,"line":251},[1207],{"type":40,"tag":184,"props":1208,"children":1209},{"style":191},[1210],{"type":46,"value":1211},"      {\n",{"type":40,"tag":184,"props":1213,"children":1214},{"class":186,"line":292},[1215,1219,1224,1228,1232,1236,1240,1245,1249],{"type":40,"tag":184,"props":1216,"children":1217},{"style":191},[1218],{"type":46,"value":628},{"type":40,"tag":184,"props":1220,"children":1221},{"style":260},[1222],{"type":46,"value":1223},"appIDs",{"type":40,"tag":184,"props":1225,"children":1226},{"style":191},[1227],{"type":46,"value":213},{"type":40,"tag":184,"props":1229,"children":1230},{"style":191},[1231],{"type":46,"value":171},{"type":40,"tag":184,"props":1233,"children":1234},{"style":191},[1235],{"type":46,"value":893},{"type":40,"tag":184,"props":1237,"children":1238},{"style":191},[1239],{"type":46,"value":213},{"type":40,"tag":184,"props":1241,"children":1242},{"style":278},[1243],{"type":46,"value":1244},"XX57RJ5UTD.com.bacon.may20",{"type":40,"tag":184,"props":1246,"children":1247},{"style":191},[1248],{"type":46,"value":213},{"type":40,"tag":184,"props":1250,"children":1251},{"style":191},[1252],{"type":46,"value":1253},"],\n",{"type":40,"tag":184,"props":1255,"children":1256},{"class":186,"line":326},[1257,1261,1266,1270,1274,1279,1283,1288,1292,1296,1300,1305,1309,1314,1318,1323,1327,1331,1335,1340,1344],{"type":40,"tag":184,"props":1258,"children":1259},{"style":191},[1260],{"type":46,"value":628},{"type":40,"tag":184,"props":1262,"children":1263},{"style":260},[1264],{"type":46,"value":1265},"components",{"type":40,"tag":184,"props":1267,"children":1268},{"style":191},[1269],{"type":46,"value":213},{"type":40,"tag":184,"props":1271,"children":1272},{"style":191},[1273],{"type":46,"value":171},{"type":40,"tag":184,"props":1275,"children":1276},{"style":191},[1277],{"type":46,"value":1278}," [{",{"type":40,"tag":184,"props":1280,"children":1281},{"style":191},[1282],{"type":46,"value":275},{"type":40,"tag":184,"props":1284,"children":1285},{"style":799},[1286],{"type":46,"value":1287},"\u002F",{"type":40,"tag":184,"props":1289,"children":1290},{"style":191},[1291],{"type":46,"value":213},{"type":40,"tag":184,"props":1293,"children":1294},{"style":191},[1295],{"type":46,"value":171},{"type":40,"tag":184,"props":1297,"children":1298},{"style":191},[1299],{"type":46,"value":275},{"type":40,"tag":184,"props":1301,"children":1302},{"style":278},[1303],{"type":46,"value":1304},"*",{"type":40,"tag":184,"props":1306,"children":1307},{"style":191},[1308],{"type":46,"value":213},{"type":40,"tag":184,"props":1310,"children":1311},{"style":191},[1312],{"type":46,"value":1313},",",{"type":40,"tag":184,"props":1315,"children":1316},{"style":191},[1317],{"type":46,"value":275},{"type":40,"tag":184,"props":1319,"children":1320},{"style":799},[1321],{"type":46,"value":1322},"comment",{"type":40,"tag":184,"props":1324,"children":1325},{"style":191},[1326],{"type":46,"value":213},{"type":40,"tag":184,"props":1328,"children":1329},{"style":191},[1330],{"type":46,"value":171},{"type":40,"tag":184,"props":1332,"children":1333},{"style":191},[1334],{"type":46,"value":275},{"type":40,"tag":184,"props":1336,"children":1337},{"style":278},[1338],{"type":46,"value":1339},"Matches all routes",{"type":40,"tag":184,"props":1341,"children":1342},{"style":191},[1343],{"type":46,"value":213},{"type":40,"tag":184,"props":1345,"children":1346},{"style":191},[1347],{"type":46,"value":1348}," }]\n",{"type":40,"tag":184,"props":1350,"children":1351},{"class":186,"line":335},[1352],{"type":40,"tag":184,"props":1353,"children":1354},{"style":191},[1355],{"type":46,"value":1356},"      }\n",{"type":40,"tag":184,"props":1358,"children":1359},{"class":186,"line":344},[1360],{"type":40,"tag":184,"props":1361,"children":1362},{"style":191},[1363],{"type":46,"value":1364},"    ]\n",{"type":40,"tag":184,"props":1366,"children":1367},{"class":186,"line":675},[1368],{"type":40,"tag":184,"props":1369,"children":1370},{"style":191},[1371],{"type":46,"value":922},{"type":40,"tag":184,"props":1373,"children":1374},{"class":186,"line":683},[1375,1379,1383,1387,1391],{"type":40,"tag":184,"props":1376,"children":1377},{"style":191},[1378],{"type":46,"value":203},{"type":40,"tag":184,"props":1380,"children":1381},{"style":206},[1382],{"type":46,"value":1059},{"type":40,"tag":184,"props":1384,"children":1385},{"style":191},[1386],{"type":46,"value":213},{"type":40,"tag":184,"props":1388,"children":1389},{"style":191},[1390],{"type":46,"value":171},{"type":40,"tag":184,"props":1392,"children":1393},{"style":191},[1394],{"type":46,"value":222},{"type":40,"tag":184,"props":1396,"children":1398},{"class":186,"line":1397},11,[1399,1403,1408,1412,1416,1420,1424,1429,1433],{"type":40,"tag":184,"props":1400,"children":1401},{"style":191},[1402],{"type":46,"value":231},{"type":40,"tag":184,"props":1404,"children":1405},{"style":234},[1406],{"type":46,"value":1407},"apps",{"type":40,"tag":184,"props":1409,"children":1410},{"style":191},[1411],{"type":46,"value":213},{"type":40,"tag":184,"props":1413,"children":1414},{"style":191},[1415],{"type":46,"value":171},{"type":40,"tag":184,"props":1417,"children":1418},{"style":191},[1419],{"type":46,"value":893},{"type":40,"tag":184,"props":1421,"children":1422},{"style":191},[1423],{"type":46,"value":213},{"type":40,"tag":184,"props":1425,"children":1426},{"style":278},[1427],{"type":46,"value":1428},"XX57RJ5UTD.com.bacon.may20.clip",{"type":40,"tag":184,"props":1430,"children":1431},{"style":191},[1432],{"type":46,"value":213},{"type":40,"tag":184,"props":1434,"children":1435},{"style":191},[1436],{"type":46,"value":1437},"]\n",{"type":40,"tag":184,"props":1439,"children":1441},{"class":186,"line":1440},12,[1442],{"type":40,"tag":184,"props":1443,"children":1444},{"style":191},[1445],{"type":46,"value":922},{"type":40,"tag":184,"props":1447,"children":1449},{"class":186,"line":1448},13,[1450,1454,1459,1463,1467],{"type":40,"tag":184,"props":1451,"children":1452},{"style":191},[1453],{"type":46,"value":203},{"type":40,"tag":184,"props":1455,"children":1456},{"style":206},[1457],{"type":46,"value":1458},"activitycontinuation",{"type":40,"tag":184,"props":1460,"children":1461},{"style":191},[1462],{"type":46,"value":213},{"type":40,"tag":184,"props":1464,"children":1465},{"style":191},[1466],{"type":46,"value":171},{"type":40,"tag":184,"props":1468,"children":1469},{"style":191},[1470],{"type":46,"value":222},{"type":40,"tag":184,"props":1472,"children":1474},{"class":186,"line":1473},14,[1475,1479,1483,1487,1491,1495,1499,1503,1507],{"type":40,"tag":184,"props":1476,"children":1477},{"style":191},[1478],{"type":46,"value":231},{"type":40,"tag":184,"props":1480,"children":1481},{"style":234},[1482],{"type":46,"value":1407},{"type":40,"tag":184,"props":1484,"children":1485},{"style":191},[1486],{"type":46,"value":213},{"type":40,"tag":184,"props":1488,"children":1489},{"style":191},[1490],{"type":46,"value":171},{"type":40,"tag":184,"props":1492,"children":1493},{"style":191},[1494],{"type":46,"value":893},{"type":40,"tag":184,"props":1496,"children":1497},{"style":191},[1498],{"type":46,"value":213},{"type":40,"tag":184,"props":1500,"children":1501},{"style":278},[1502],{"type":46,"value":1244},{"type":40,"tag":184,"props":1504,"children":1505},{"style":191},[1506],{"type":46,"value":213},{"type":40,"tag":184,"props":1508,"children":1509},{"style":191},[1510],{"type":46,"value":1437},{"type":40,"tag":184,"props":1512,"children":1514},{"class":186,"line":1513},15,[1515],{"type":40,"tag":184,"props":1516,"children":1517},{"style":191},[1518],{"type":46,"value":922},{"type":40,"tag":184,"props":1520,"children":1522},{"class":186,"line":1521},16,[1523,1527,1532,1536,1540],{"type":40,"tag":184,"props":1524,"children":1525},{"style":191},[1526],{"type":46,"value":203},{"type":40,"tag":184,"props":1528,"children":1529},{"style":206},[1530],{"type":46,"value":1531},"webcredentials",{"type":40,"tag":184,"props":1533,"children":1534},{"style":191},[1535],{"type":46,"value":213},{"type":40,"tag":184,"props":1537,"children":1538},{"style":191},[1539],{"type":46,"value":171},{"type":40,"tag":184,"props":1541,"children":1542},{"style":191},[1543],{"type":46,"value":222},{"type":40,"tag":184,"props":1545,"children":1547},{"class":186,"line":1546},17,[1548,1552,1556,1560,1564,1568,1572,1576,1580],{"type":40,"tag":184,"props":1549,"children":1550},{"style":191},[1551],{"type":46,"value":231},{"type":40,"tag":184,"props":1553,"children":1554},{"style":234},[1555],{"type":46,"value":1407},{"type":40,"tag":184,"props":1557,"children":1558},{"style":191},[1559],{"type":46,"value":213},{"type":40,"tag":184,"props":1561,"children":1562},{"style":191},[1563],{"type":46,"value":171},{"type":40,"tag":184,"props":1565,"children":1566},{"style":191},[1567],{"type":46,"value":893},{"type":40,"tag":184,"props":1569,"children":1570},{"style":191},[1571],{"type":46,"value":213},{"type":40,"tag":184,"props":1573,"children":1574},{"style":278},[1575],{"type":46,"value":1244},{"type":40,"tag":184,"props":1577,"children":1578},{"style":191},[1579],{"type":46,"value":213},{"type":40,"tag":184,"props":1581,"children":1582},{"style":191},[1583],{"type":46,"value":1437},{"type":40,"tag":184,"props":1585,"children":1587},{"class":186,"line":1586},18,[1588],{"type":40,"tag":184,"props":1589,"children":1590},{"style":191},[1591],{"type":46,"value":341},{"type":40,"tag":184,"props":1593,"children":1595},{"class":186,"line":1594},19,[1596],{"type":40,"tag":184,"props":1597,"children":1598},{"style":191},[1599],{"type":46,"value":350},{"type":40,"tag":53,"props":1601,"children":1602},{},[1603],{"type":46,"value":1604},"Notes:",{"type":40,"tag":423,"props":1606,"children":1607},{},[1608,1642,1654,1664,1688],{"type":40,"tag":427,"props":1609,"children":1610},{},[1611,1613,1618,1619,1632,1634,1640],{"type":46,"value":1612},"The file has ",{"type":40,"tag":57,"props":1614,"children":1615},{},[1616],{"type":46,"value":1617},"no extension",{"type":46,"value":82},{"type":40,"tag":57,"props":1620,"children":1621},{},[1622,1624,1630],{"type":46,"value":1623},"no ",{"type":40,"tag":65,"props":1625,"children":1627},{"className":1626},[],[1628],{"type":46,"value":1629},"Content-Type",{"type":46,"value":1631}," requirements",{"type":46,"value":1633}," beyond being served as-is. Expo Router static export serves files in ",{"type":40,"tag":65,"props":1635,"children":1637},{"className":1636},[],[1638],{"type":46,"value":1639},"public\u002F",{"type":46,"value":1641}," verbatim.",{"type":40,"tag":427,"props":1643,"children":1644},{},[1645,1647,1652],{"type":46,"value":1646},"The ",{"type":40,"tag":65,"props":1648,"children":1650},{"className":1649},[],[1651],{"type":46,"value":1059},{"type":46,"value":1653}," block is what lets a URL on the domain launch the Clip.",{"type":40,"tag":427,"props":1655,"children":1656},{},[1657,1662],{"type":40,"tag":65,"props":1658,"children":1660},{"className":1659},[],[1661],{"type":46,"value":1531},{"type":46,"value":1663}," is used for sharing credentials between the website, parent app, and the App Clip.",{"type":40,"tag":427,"props":1665,"children":1666},{},[1667,1672,1674,1680,1682],{"type":40,"tag":65,"props":1668,"children":1670},{"className":1669},[],[1671],{"type":46,"value":1458},{"type":46,"value":1673}," is optional and used for sharing the link between mobile and desktop. Must be used with ",{"type":40,"tag":65,"props":1675,"children":1677},{"className":1676},[],[1678],{"type":46,"value":1679},"Head",{"type":46,"value":1681}," from expo-router — see ",{"type":40,"tag":74,"props":1683,"children":1686},{"href":1684,"rel":1685},"https:\u002F\u002Fdocs.expo.dev\u002Frouter\u002Fadvanced\u002Fapple-handoff\u002F",[78],[1687],{"type":46,"value":1684},{"type":40,"tag":427,"props":1689,"children":1690},{},[1691,1693],{"type":46,"value":1692},"Notation and route-disabling details: ",{"type":40,"tag":74,"props":1694,"children":1697},{"href":1695,"rel":1696},"https:\u002F\u002Fsosumi.ai\u002Fdocumentation\u002Fxcode\u002Fsupporting-associated-domains",[78],[1698],{"type":46,"value":1695},{"type":40,"tag":134,"props":1700,"children":1702},{"id":1701},"_6-add-the-smart-app-banner-meta-tag",[1703],{"type":46,"value":1704},"6. Add the Smart App Banner meta tag",{"type":40,"tag":53,"props":1706,"children":1707},{},[1708,1710,1716,1718,1723],{"type":46,"value":1709},"Create ",{"type":40,"tag":65,"props":1711,"children":1713},{"className":1712},[],[1714],{"type":46,"value":1715},"src\u002Fapp\u002F+html.tsx",{"type":46,"value":1717}," (Expo Router's HTML shell) and add the tag from ",{"type":40,"tag":65,"props":1719,"children":1721},{"className":1720},[],[1722],{"type":46,"value":1110},{"type":46,"value":1724},". Create the versioned template if it doesn't exist:",{"type":40,"tag":173,"props":1726,"children":1728},{"className":359,"code":1727,"language":361,"meta":178,"style":178},"bunx expo customize src\u002Fapp\u002F+html.tsx\n",[1729],{"type":40,"tag":65,"props":1730,"children":1731},{"__ignoreMap":178},[1732],{"type":40,"tag":184,"props":1733,"children":1734},{"class":186,"line":187},[1735,1739,1744,1749],{"type":40,"tag":184,"props":1736,"children":1737},{"style":234},[1738],{"type":46,"value":982},{"type":40,"tag":184,"props":1740,"children":1741},{"style":278},[1742],{"type":46,"value":1743}," expo",{"type":40,"tag":184,"props":1745,"children":1746},{"style":278},[1747],{"type":46,"value":1748}," customize",{"type":40,"tag":184,"props":1750,"children":1751},{"style":278},[1752],{"type":46,"value":1753}," src\u002Fapp\u002F+html.tsx\n",{"type":40,"tag":53,"props":1755,"children":1756},{},[1757,1759,1765],{"type":46,"value":1758},"Add the meta tag to the ",{"type":40,"tag":65,"props":1760,"children":1762},{"className":1761},[],[1763],{"type":46,"value":1764},"\u003Chead>",{"type":46,"value":171},{"type":40,"tag":173,"props":1767,"children":1771},{"className":1768,"code":1769,"language":1770,"meta":178,"style":178},"language-tsx shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { ScrollViewStyleReset } from \"expo-router\u002Fhtml\";\n\nexport default function Root({ children }: { children: React.ReactNode }) {\n  return (\n    \u003Chtml lang=\"en\">\n      \u003Chead>\n        \u003Cmeta charSet=\"utf-8\" \u002F>\n        \u003Cmeta httpEquiv=\"X-UA-Compatible\" content=\"IE=edge\" \u002F>\n        \u003Cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1\" \u002F>\n        \u003Cmeta name=\"apple-itunes-app\" content=\"app-id=6771566491\" \u002F>\n        \u003CScrollViewStyleReset \u002F>\n      \u003C\u002Fhead>\n      \u003Cbody>{children}\u003C\u002Fbody>\n    \u003C\u002Fhtml>\n  );\n}\n","tsx",[1772],{"type":40,"tag":65,"props":1773,"children":1774},{"__ignoreMap":178},[1775,1819,1828,1902,1915,1956,1973,2013,2072,2130,2187,2203,2219,2254,2270,2282],{"type":40,"tag":184,"props":1776,"children":1777},{"class":186,"line":187},[1778,1783,1787,1792,1797,1802,1806,1811,1815],{"type":40,"tag":184,"props":1779,"children":1780},{"style":720},[1781],{"type":46,"value":1782},"import",{"type":40,"tag":184,"props":1784,"children":1785},{"style":191},[1786],{"type":46,"value":734},{"type":40,"tag":184,"props":1788,"children":1789},{"style":787},[1790],{"type":46,"value":1791}," ScrollViewStyleReset",{"type":40,"tag":184,"props":1793,"children":1794},{"style":191},[1795],{"type":46,"value":1796}," }",{"type":40,"tag":184,"props":1798,"children":1799},{"style":720},[1800],{"type":46,"value":1801}," from",{"type":40,"tag":184,"props":1803,"children":1804},{"style":191},[1805],{"type":46,"value":275},{"type":40,"tag":184,"props":1807,"children":1808},{"style":278},[1809],{"type":46,"value":1810},"expo-router\u002Fhtml",{"type":40,"tag":184,"props":1812,"children":1813},{"style":191},[1814],{"type":46,"value":213},{"type":40,"tag":184,"props":1816,"children":1817},{"style":191},[1818],{"type":46,"value":938},{"type":40,"tag":184,"props":1820,"children":1821},{"class":186,"line":197},[1822],{"type":40,"tag":184,"props":1823,"children":1825},{"emptyLinePlaceholder":1824},true,[1826],{"type":46,"value":1827},"\n",{"type":40,"tag":184,"props":1829,"children":1830},{"class":186,"line":225},[1831,1836,1841,1846,1852,1857,1862,1867,1871,1875,1879,1884,1888,1893,1898],{"type":40,"tag":184,"props":1832,"children":1833},{"style":720},[1834],{"type":46,"value":1835},"export",{"type":40,"tag":184,"props":1837,"children":1838},{"style":720},[1839],{"type":46,"value":1840}," default",{"type":40,"tag":184,"props":1842,"children":1843},{"style":206},[1844],{"type":46,"value":1845}," function",{"type":40,"tag":184,"props":1847,"children":1849},{"style":1848},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[1850],{"type":46,"value":1851}," Root",{"type":40,"tag":184,"props":1853,"children":1854},{"style":191},[1855],{"type":46,"value":1856},"({",{"type":40,"tag":184,"props":1858,"children":1859},{"style":771},[1860],{"type":46,"value":1861}," children",{"type":40,"tag":184,"props":1863,"children":1864},{"style":191},[1865],{"type":46,"value":1866}," }:",{"type":40,"tag":184,"props":1868,"children":1869},{"style":191},[1870],{"type":46,"value":734},{"type":40,"tag":184,"props":1872,"children":1873},{"style":799},[1874],{"type":46,"value":1861},{"type":40,"tag":184,"props":1876,"children":1877},{"style":191},[1878],{"type":46,"value":171},{"type":40,"tag":184,"props":1880,"children":1881},{"style":234},[1882],{"type":46,"value":1883}," React",{"type":40,"tag":184,"props":1885,"children":1886},{"style":191},[1887],{"type":46,"value":90},{"type":40,"tag":184,"props":1889,"children":1890},{"style":234},[1891],{"type":46,"value":1892},"ReactNode",{"type":40,"tag":184,"props":1894,"children":1895},{"style":191},[1896],{"type":46,"value":1897}," })",{"type":40,"tag":184,"props":1899,"children":1900},{"style":191},[1901],{"type":46,"value":222},{"type":40,"tag":184,"props":1903,"children":1904},{"class":186,"line":251},[1905,1910],{"type":40,"tag":184,"props":1906,"children":1907},{"style":720},[1908],{"type":46,"value":1909},"  return",{"type":40,"tag":184,"props":1911,"children":1912},{"style":799},[1913],{"type":46,"value":1914}," (\n",{"type":40,"tag":184,"props":1916,"children":1917},{"class":186,"line":292},[1918,1923,1928,1933,1938,1942,1947,1951],{"type":40,"tag":184,"props":1919,"children":1920},{"style":191},[1921],{"type":46,"value":1922},"    \u003C",{"type":40,"tag":184,"props":1924,"children":1925},{"style":799},[1926],{"type":46,"value":1927},"html",{"type":40,"tag":184,"props":1929,"children":1930},{"style":206},[1931],{"type":46,"value":1932}," lang",{"type":40,"tag":184,"props":1934,"children":1935},{"style":191},[1936],{"type":46,"value":1937},"=",{"type":40,"tag":184,"props":1939,"children":1940},{"style":191},[1941],{"type":46,"value":213},{"type":40,"tag":184,"props":1943,"children":1944},{"style":278},[1945],{"type":46,"value":1946},"en",{"type":40,"tag":184,"props":1948,"children":1949},{"style":191},[1950],{"type":46,"value":213},{"type":40,"tag":184,"props":1952,"children":1953},{"style":191},[1954],{"type":46,"value":1955},">\n",{"type":40,"tag":184,"props":1957,"children":1958},{"class":186,"line":326},[1959,1964,1969],{"type":40,"tag":184,"props":1960,"children":1961},{"style":191},[1962],{"type":46,"value":1963},"      \u003C",{"type":40,"tag":184,"props":1965,"children":1966},{"style":799},[1967],{"type":46,"value":1968},"head",{"type":40,"tag":184,"props":1970,"children":1971},{"style":191},[1972],{"type":46,"value":1955},{"type":40,"tag":184,"props":1974,"children":1975},{"class":186,"line":335},[1976,1981,1986,1991,1995,1999,2004,2008],{"type":40,"tag":184,"props":1977,"children":1978},{"style":191},[1979],{"type":46,"value":1980},"        \u003C",{"type":40,"tag":184,"props":1982,"children":1983},{"style":799},[1984],{"type":46,"value":1985},"meta",{"type":40,"tag":184,"props":1987,"children":1988},{"style":206},[1989],{"type":46,"value":1990}," charSet",{"type":40,"tag":184,"props":1992,"children":1993},{"style":191},[1994],{"type":46,"value":1937},{"type":40,"tag":184,"props":1996,"children":1997},{"style":191},[1998],{"type":46,"value":213},{"type":40,"tag":184,"props":2000,"children":2001},{"style":278},[2002],{"type":46,"value":2003},"utf-8",{"type":40,"tag":184,"props":2005,"children":2006},{"style":191},[2007],{"type":46,"value":213},{"type":40,"tag":184,"props":2009,"children":2010},{"style":191},[2011],{"type":46,"value":2012}," \u002F>\n",{"type":40,"tag":184,"props":2014,"children":2015},{"class":186,"line":344},[2016,2020,2024,2029,2033,2037,2042,2046,2051,2055,2059,2064,2068],{"type":40,"tag":184,"props":2017,"children":2018},{"style":191},[2019],{"type":46,"value":1980},{"type":40,"tag":184,"props":2021,"children":2022},{"style":799},[2023],{"type":46,"value":1985},{"type":40,"tag":184,"props":2025,"children":2026},{"style":206},[2027],{"type":46,"value":2028}," httpEquiv",{"type":40,"tag":184,"props":2030,"children":2031},{"style":191},[2032],{"type":46,"value":1937},{"type":40,"tag":184,"props":2034,"children":2035},{"style":191},[2036],{"type":46,"value":213},{"type":40,"tag":184,"props":2038,"children":2039},{"style":278},[2040],{"type":46,"value":2041},"X-UA-Compatible",{"type":40,"tag":184,"props":2043,"children":2044},{"style":191},[2045],{"type":46,"value":213},{"type":40,"tag":184,"props":2047,"children":2048},{"style":206},[2049],{"type":46,"value":2050}," content",{"type":40,"tag":184,"props":2052,"children":2053},{"style":191},[2054],{"type":46,"value":1937},{"type":40,"tag":184,"props":2056,"children":2057},{"style":191},[2058],{"type":46,"value":213},{"type":40,"tag":184,"props":2060,"children":2061},{"style":278},[2062],{"type":46,"value":2063},"IE=edge",{"type":40,"tag":184,"props":2065,"children":2066},{"style":191},[2067],{"type":46,"value":213},{"type":40,"tag":184,"props":2069,"children":2070},{"style":191},[2071],{"type":46,"value":2012},{"type":40,"tag":184,"props":2073,"children":2074},{"class":186,"line":675},[2075,2079,2083,2088,2092,2096,2101,2105,2109,2113,2117,2122,2126],{"type":40,"tag":184,"props":2076,"children":2077},{"style":191},[2078],{"type":46,"value":1980},{"type":40,"tag":184,"props":2080,"children":2081},{"style":799},[2082],{"type":46,"value":1985},{"type":40,"tag":184,"props":2084,"children":2085},{"style":206},[2086],{"type":46,"value":2087}," name",{"type":40,"tag":184,"props":2089,"children":2090},{"style":191},[2091],{"type":46,"value":1937},{"type":40,"tag":184,"props":2093,"children":2094},{"style":191},[2095],{"type":46,"value":213},{"type":40,"tag":184,"props":2097,"children":2098},{"style":278},[2099],{"type":46,"value":2100},"viewport",{"type":40,"tag":184,"props":2102,"children":2103},{"style":191},[2104],{"type":46,"value":213},{"type":40,"tag":184,"props":2106,"children":2107},{"style":206},[2108],{"type":46,"value":2050},{"type":40,"tag":184,"props":2110,"children":2111},{"style":191},[2112],{"type":46,"value":1937},{"type":40,"tag":184,"props":2114,"children":2115},{"style":191},[2116],{"type":46,"value":213},{"type":40,"tag":184,"props":2118,"children":2119},{"style":278},[2120],{"type":46,"value":2121},"width=device-width, initial-scale=1",{"type":40,"tag":184,"props":2123,"children":2124},{"style":191},[2125],{"type":46,"value":213},{"type":40,"tag":184,"props":2127,"children":2128},{"style":191},[2129],{"type":46,"value":2012},{"type":40,"tag":184,"props":2131,"children":2132},{"class":186,"line":683},[2133,2137,2141,2145,2149,2153,2158,2162,2166,2170,2174,2179,2183],{"type":40,"tag":184,"props":2134,"children":2135},{"style":191},[2136],{"type":46,"value":1980},{"type":40,"tag":184,"props":2138,"children":2139},{"style":799},[2140],{"type":46,"value":1985},{"type":40,"tag":184,"props":2142,"children":2143},{"style":206},[2144],{"type":46,"value":2087},{"type":40,"tag":184,"props":2146,"children":2147},{"style":191},[2148],{"type":46,"value":1937},{"type":40,"tag":184,"props":2150,"children":2151},{"style":191},[2152],{"type":46,"value":213},{"type":40,"tag":184,"props":2154,"children":2155},{"style":278},[2156],{"type":46,"value":2157},"apple-itunes-app",{"type":40,"tag":184,"props":2159,"children":2160},{"style":191},[2161],{"type":46,"value":213},{"type":40,"tag":184,"props":2163,"children":2164},{"style":206},[2165],{"type":46,"value":2050},{"type":40,"tag":184,"props":2167,"children":2168},{"style":191},[2169],{"type":46,"value":1937},{"type":40,"tag":184,"props":2171,"children":2172},{"style":191},[2173],{"type":46,"value":213},{"type":40,"tag":184,"props":2175,"children":2176},{"style":278},[2177],{"type":46,"value":2178},"app-id=6771566491",{"type":40,"tag":184,"props":2180,"children":2181},{"style":191},[2182],{"type":46,"value":213},{"type":40,"tag":184,"props":2184,"children":2185},{"style":191},[2186],{"type":46,"value":2012},{"type":40,"tag":184,"props":2188,"children":2189},{"class":186,"line":1397},[2190,2194,2199],{"type":40,"tag":184,"props":2191,"children":2192},{"style":191},[2193],{"type":46,"value":1980},{"type":40,"tag":184,"props":2195,"children":2196},{"style":234},[2197],{"type":46,"value":2198},"ScrollViewStyleReset",{"type":40,"tag":184,"props":2200,"children":2201},{"style":191},[2202],{"type":46,"value":2012},{"type":40,"tag":184,"props":2204,"children":2205},{"class":186,"line":1440},[2206,2211,2215],{"type":40,"tag":184,"props":2207,"children":2208},{"style":191},[2209],{"type":46,"value":2210},"      \u003C\u002F",{"type":40,"tag":184,"props":2212,"children":2213},{"style":799},[2214],{"type":46,"value":1968},{"type":40,"tag":184,"props":2216,"children":2217},{"style":191},[2218],{"type":46,"value":1955},{"type":40,"tag":184,"props":2220,"children":2221},{"class":186,"line":1448},[2222,2226,2231,2236,2241,2246,2250],{"type":40,"tag":184,"props":2223,"children":2224},{"style":191},[2225],{"type":46,"value":1963},{"type":40,"tag":184,"props":2227,"children":2228},{"style":799},[2229],{"type":46,"value":2230},"body",{"type":40,"tag":184,"props":2232,"children":2233},{"style":191},[2234],{"type":46,"value":2235},">{",{"type":40,"tag":184,"props":2237,"children":2238},{"style":787},[2239],{"type":46,"value":2240},"children",{"type":40,"tag":184,"props":2242,"children":2243},{"style":191},[2244],{"type":46,"value":2245},"}\u003C\u002F",{"type":40,"tag":184,"props":2247,"children":2248},{"style":799},[2249],{"type":46,"value":2230},{"type":40,"tag":184,"props":2251,"children":2252},{"style":191},[2253],{"type":46,"value":1955},{"type":40,"tag":184,"props":2255,"children":2256},{"class":186,"line":1473},[2257,2262,2266],{"type":40,"tag":184,"props":2258,"children":2259},{"style":191},[2260],{"type":46,"value":2261},"    \u003C\u002F",{"type":40,"tag":184,"props":2263,"children":2264},{"style":799},[2265],{"type":46,"value":1927},{"type":40,"tag":184,"props":2267,"children":2268},{"style":191},[2269],{"type":46,"value":1955},{"type":40,"tag":184,"props":2271,"children":2272},{"class":186,"line":1513},[2273,2278],{"type":40,"tag":184,"props":2274,"children":2275},{"style":799},[2276],{"type":46,"value":2277},"  )",{"type":40,"tag":184,"props":2279,"children":2280},{"style":191},[2281],{"type":46,"value":938},{"type":40,"tag":184,"props":2283,"children":2284},{"class":186,"line":1521},[2285],{"type":40,"tag":184,"props":2286,"children":2287},{"style":191},[2288],{"type":46,"value":350},{"type":40,"tag":53,"props":2290,"children":2291},{},[2292],{"type":46,"value":2293},"To make the website show the App Clip card instead of the install card, use:",{"type":40,"tag":173,"props":2295,"children":2298},{"className":2296,"code":2297,"language":1927,"meta":178,"style":178},"language-html shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003Cmeta\n  name=\"apple-itunes-app\"\n  content=\"app-id=6771566491, app-clip-bundle-id=com.bacon.may20.clip, app-clip-display=card\"\n\u002F>\n",[2299],{"type":40,"tag":65,"props":2300,"children":2301},{"__ignoreMap":178},[2302,2315,2339,2364],{"type":40,"tag":184,"props":2303,"children":2304},{"class":186,"line":187},[2305,2310],{"type":40,"tag":184,"props":2306,"children":2307},{"style":191},[2308],{"type":46,"value":2309},"\u003C",{"type":40,"tag":184,"props":2311,"children":2312},{"style":799},[2313],{"type":46,"value":2314},"meta\n",{"type":40,"tag":184,"props":2316,"children":2317},{"class":186,"line":197},[2318,2323,2327,2331,2335],{"type":40,"tag":184,"props":2319,"children":2320},{"style":206},[2321],{"type":46,"value":2322},"  name",{"type":40,"tag":184,"props":2324,"children":2325},{"style":191},[2326],{"type":46,"value":1937},{"type":40,"tag":184,"props":2328,"children":2329},{"style":191},[2330],{"type":46,"value":213},{"type":40,"tag":184,"props":2332,"children":2333},{"style":278},[2334],{"type":46,"value":2157},{"type":40,"tag":184,"props":2336,"children":2337},{"style":191},[2338],{"type":46,"value":323},{"type":40,"tag":184,"props":2340,"children":2341},{"class":186,"line":225},[2342,2347,2351,2355,2360],{"type":40,"tag":184,"props":2343,"children":2344},{"style":206},[2345],{"type":46,"value":2346},"  content",{"type":40,"tag":184,"props":2348,"children":2349},{"style":191},[2350],{"type":46,"value":1937},{"type":40,"tag":184,"props":2352,"children":2353},{"style":191},[2354],{"type":46,"value":213},{"type":40,"tag":184,"props":2356,"children":2357},{"style":278},[2358],{"type":46,"value":2359},"app-id=6771566491, app-clip-bundle-id=com.bacon.may20.clip, app-clip-display=card",{"type":40,"tag":184,"props":2361,"children":2362},{"style":191},[2363],{"type":46,"value":323},{"type":40,"tag":184,"props":2365,"children":2366},{"class":186,"line":251},[2367],{"type":40,"tag":184,"props":2368,"children":2369},{"style":191},[2370],{"type":46,"value":2371},"\u002F>\n",{"type":40,"tag":134,"props":2373,"children":2375},{"id":2374},"_7-deploy-the-website",[2376],{"type":46,"value":2377},"7. Deploy the website",{"type":40,"tag":53,"props":2379,"children":2380},{},[2381,2383,2390],{"type":46,"value":2382},"The AASA file must be live before iOS will trust the association. Use ",{"type":40,"tag":74,"props":2384,"children":2387},{"href":2385,"rel":2386},"https:\u002F\u002Fdocs.expo.dev\u002Feas\u002Fhosting\u002F",[78],[2388],{"type":46,"value":2389},"EAS Hosting",{"type":46,"value":171},{"type":40,"tag":173,"props":2392,"children":2394},{"className":359,"code":2393,"language":361,"meta":178,"style":178},"bunx expo export -p web\neas deploy --prod\n",[2395],{"type":40,"tag":65,"props":2396,"children":2397},{"__ignoreMap":178},[2398,2423],{"type":40,"tag":184,"props":2399,"children":2400},{"class":186,"line":187},[2401,2405,2409,2414,2418],{"type":40,"tag":184,"props":2402,"children":2403},{"style":234},[2404],{"type":46,"value":982},{"type":40,"tag":184,"props":2406,"children":2407},{"style":278},[2408],{"type":46,"value":1743},{"type":40,"tag":184,"props":2410,"children":2411},{"style":278},[2412],{"type":46,"value":2413}," export",{"type":40,"tag":184,"props":2415,"children":2416},{"style":278},[2417],{"type":46,"value":1081},{"type":40,"tag":184,"props":2419,"children":2420},{"style":278},[2421],{"type":46,"value":2422}," web\n",{"type":40,"tag":184,"props":2424,"children":2425},{"class":186,"line":197},[2426,2431,2436],{"type":40,"tag":184,"props":2427,"children":2428},{"style":234},[2429],{"type":46,"value":2430},"eas",{"type":40,"tag":184,"props":2432,"children":2433},{"style":278},[2434],{"type":46,"value":2435}," deploy",{"type":40,"tag":184,"props":2437,"children":2438},{"style":278},[2439],{"type":46,"value":2440}," --prod\n",{"type":40,"tag":53,"props":2442,"children":2443},{},[2444,2446,2452,2454,2460],{"type":46,"value":2445},"This publishes the site (including ",{"type":40,"tag":65,"props":2447,"children":2449},{"className":2448},[],[2450],{"type":46,"value":2451},"\u002F.well-known\u002Fapple-app-site-association",{"type":46,"value":2453},") at ",{"type":40,"tag":65,"props":2455,"children":2457},{"className":2456},[],[2458],{"type":46,"value":2459},"https:\u002F\u002F\u003Cslug>.expo.app",{"type":46,"value":2461},". Verify:",{"type":40,"tag":173,"props":2463,"children":2465},{"className":359,"code":2464,"language":361,"meta":178,"style":178},"curl https:\u002F\u002Fmay20.expo.app\u002F.well-known\u002Fapple-app-site-association\n",[2466],{"type":40,"tag":65,"props":2467,"children":2468},{"__ignoreMap":178},[2469],{"type":40,"tag":184,"props":2470,"children":2471},{"class":186,"line":187},[2472,2477],{"type":40,"tag":184,"props":2473,"children":2474},{"style":234},[2475],{"type":46,"value":2476},"curl",{"type":40,"tag":184,"props":2478,"children":2479},{"style":278},[2480],{"type":46,"value":2481}," https:\u002F\u002Fmay20.expo.app\u002F.well-known\u002Fapple-app-site-association\n",{"type":40,"tag":134,"props":2483,"children":2485},{"id":2484},"_8-mirror-permissions",[2486],{"type":46,"value":2487},"8. Mirror permissions",{"type":40,"tag":53,"props":2489,"children":2490},{},[2491],{"type":46,"value":2492},"Inspect the parent app's permissions after prebuild:",{"type":40,"tag":173,"props":2494,"children":2496},{"className":359,"code":2495,"language":361,"meta":178,"style":178},"npx expo config --type introspect\n",[2497],{"type":40,"tag":65,"props":2498,"children":2499},{"__ignoreMap":178},[2500],{"type":40,"tag":184,"props":2501,"children":2502},{"class":186,"line":187},[2503,2508,2512,2517,2522],{"type":40,"tag":184,"props":2504,"children":2505},{"style":234},[2506],{"type":46,"value":2507},"npx",{"type":40,"tag":184,"props":2509,"children":2510},{"style":278},[2511],{"type":46,"value":1743},{"type":40,"tag":184,"props":2513,"children":2514},{"style":278},[2515],{"type":46,"value":2516}," config",{"type":40,"tag":184,"props":2518,"children":2519},{"style":278},[2520],{"type":46,"value":2521}," --type",{"type":40,"tag":184,"props":2523,"children":2524},{"style":278},[2525],{"type":46,"value":2526}," introspect\n",{"type":40,"tag":53,"props":2528,"children":2529},{},[2530,2532,2538,2540,2546],{"type":46,"value":2531},"Look at the ",{"type":40,"tag":65,"props":2533,"children":2535},{"className":2534},[],[2536],{"type":46,"value":2537},"infoPlist",{"type":46,"value":2539}," object — mirror the permission keys in the App Clip's ",{"type":40,"tag":65,"props":2541,"children":2543},{"className":2542},[],[2544],{"type":46,"value":2545},"Info.plist",{"type":46,"value":2547}," so matching APIs can be used from the Clip.",{"type":40,"tag":53,"props":2549,"children":2550},{},[2551,2553,2559],{"type":46,"value":2552},"Set ",{"type":40,"tag":65,"props":2554,"children":2556},{"className":2555},[],[2557],{"type":46,"value":2558},"deploymentTarget: \"17.6\"",{"type":46,"value":2560}," in the Clip's target config — App Clips have a higher minimum size limit in iOS 17.6.",{"type":40,"tag":53,"props":2562,"children":2563},{},[2564,2566,2571],{"type":46,"value":2565},"If the app uses push notifications or location services, add to the App Clip's ",{"type":40,"tag":65,"props":2567,"children":2569},{"className":2568},[],[2570],{"type":46,"value":2545},{"type":46,"value":2572}," to request the necessary permissions:",{"type":40,"tag":173,"props":2574,"children":2578},{"className":2575,"code":2576,"language":2577,"meta":178,"style":178},"language-xml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003Ckey>NSAppClip\u003C\u002Fkey>\n\u003Cdict>\n  \u003Ckey>NSAppClipRequestEphemeralUserNotification\u003C\u002Fkey>\n  \u003Cfalse\u002F>\n  \u003Ckey>NSAppClipRequestLocationConfirmation\u003C\u002Fkey>\n  \u003Ctrue\u002F>\n\u003C\u002Fdict>\n","xml",[2579],{"type":40,"tag":65,"props":2580,"children":2581},{"__ignoreMap":178},[2582,2590,2598,2606,2614,2622,2630],{"type":40,"tag":184,"props":2583,"children":2584},{"class":186,"line":187},[2585],{"type":40,"tag":184,"props":2586,"children":2587},{},[2588],{"type":46,"value":2589},"\u003Ckey>NSAppClip\u003C\u002Fkey>\n",{"type":40,"tag":184,"props":2591,"children":2592},{"class":186,"line":197},[2593],{"type":40,"tag":184,"props":2594,"children":2595},{},[2596],{"type":46,"value":2597},"\u003Cdict>\n",{"type":40,"tag":184,"props":2599,"children":2600},{"class":186,"line":225},[2601],{"type":40,"tag":184,"props":2602,"children":2603},{},[2604],{"type":46,"value":2605},"  \u003Ckey>NSAppClipRequestEphemeralUserNotification\u003C\u002Fkey>\n",{"type":40,"tag":184,"props":2607,"children":2608},{"class":186,"line":251},[2609],{"type":40,"tag":184,"props":2610,"children":2611},{},[2612],{"type":46,"value":2613},"  \u003Cfalse\u002F>\n",{"type":40,"tag":184,"props":2615,"children":2616},{"class":186,"line":292},[2617],{"type":40,"tag":184,"props":2618,"children":2619},{},[2620],{"type":46,"value":2621},"  \u003Ckey>NSAppClipRequestLocationConfirmation\u003C\u002Fkey>\n",{"type":40,"tag":184,"props":2623,"children":2624},{"class":186,"line":326},[2625],{"type":40,"tag":184,"props":2626,"children":2627},{},[2628],{"type":46,"value":2629},"  \u003Ctrue\u002F>\n",{"type":40,"tag":184,"props":2631,"children":2632},{"class":186,"line":335},[2633],{"type":40,"tag":184,"props":2634,"children":2635},{},[2636],{"type":46,"value":2637},"\u003C\u002Fdict>\n",{"type":40,"tag":134,"props":2639,"children":2641},{"id":2640},"_9-build-and-submit-to-testflight",[2642],{"type":46,"value":2643},"9. Build and submit to TestFlight",{"type":40,"tag":173,"props":2645,"children":2647},{"className":359,"code":2646,"language":361,"meta":178,"style":178},"bunx testflight\n",[2648],{"type":40,"tag":65,"props":2649,"children":2650},{"__ignoreMap":178},[2651],{"type":40,"tag":184,"props":2652,"children":2653},{"class":186,"line":187},[2654,2658],{"type":40,"tag":184,"props":2655,"children":2656},{"style":234},[2657],{"type":46,"value":982},{"type":40,"tag":184,"props":2659,"children":2660},{"style":278},[2661],{"type":46,"value":2662}," testflight\n",{"type":40,"tag":53,"props":2664,"children":2665},{},[2666],{"type":46,"value":2667},"This will:",{"type":40,"tag":2669,"props":2670,"children":2671},"ol",{},[2672,2685,2697,2710],{"type":40,"tag":427,"props":2673,"children":2674},{},[2675,2677,2683],{"type":46,"value":2676},"Generate an ",{"type":40,"tag":65,"props":2678,"children":2680},{"className":2679},[],[2681],{"type":46,"value":2682},"eas.json",{"type":46,"value":2684}," if missing.",{"type":40,"tag":427,"props":2686,"children":2687},{},[2688,2690,2695],{"type":46,"value":2689},"Set up credentials for ",{"type":40,"tag":57,"props":2691,"children":2692},{},[2693],{"type":46,"value":2694},"both",{"type":46,"value":2696}," targets (parent + Clip). Each gets its own provisioning profile but can share a single Distribution Certificate.",{"type":40,"tag":427,"props":2698,"children":2699},{},[2700,2702,2708],{"type":46,"value":2701},"Sync capabilities — note ",{"type":40,"tag":65,"props":2703,"children":2705},{"className":2704},[],[2706],{"type":46,"value":2707},"Enabled: Associated Domains",{"type":46,"value":2709}," for the Clip target.",{"type":40,"tag":427,"props":2711,"children":2712},{},[2713],{"type":46,"value":2714},"Build, upload, and schedule a TestFlight submission.",{"type":40,"tag":134,"props":2716,"children":2718},{"id":2717},"_10-configure-app-clip-metadata",[2719],{"type":46,"value":2720},"10. Configure App Clip metadata",{"type":40,"tag":53,"props":2722,"children":2723},{},[2724],{"type":46,"value":2725},"Pull existing App Store metadata to local:",{"type":40,"tag":173,"props":2727,"children":2729},{"className":359,"code":2728,"language":361,"meta":178,"style":178},"eas metadata:pull\n",[2730],{"type":40,"tag":65,"props":2731,"children":2732},{"__ignoreMap":178},[2733],{"type":40,"tag":184,"props":2734,"children":2735},{"class":186,"line":187},[2736,2740],{"type":40,"tag":184,"props":2737,"children":2738},{"style":234},[2739],{"type":46,"value":2430},{"type":40,"tag":184,"props":2741,"children":2742},{"style":278},[2743],{"type":46,"value":2744}," metadata:pull\n",{"type":40,"tag":53,"props":2746,"children":2747},{},[2748,2750,2756,2758,2764],{"type":46,"value":2749},"Add ",{"type":40,"tag":65,"props":2751,"children":2753},{"className":2752},[],[2754],{"type":46,"value":2755},"apple.appClip",{"type":46,"value":2757}," to ",{"type":40,"tag":65,"props":2759,"children":2761},{"className":2760},[],[2762],{"type":46,"value":2763},"store.config.json",{"type":46,"value":2765},". Up to 3 invocation URLs can launch the Clip from a web page:",{"type":40,"tag":173,"props":2767,"children":2769},{"className":175,"code":2768,"language":177,"meta":178,"style":178},"{\n  \"configVersion\": 0,\n  \"apple\": {\n    \"appClip\": {\n      \"defaultExperience\": {\n        \"action\": \"PLAY\",\n        \"releaseWithAppStoreVersion\": true,\n        \"reviewDetail\": {\n          \"invocationUrls\": [\"https:\u002F\u002Fmay20.expo.app\u002F\", null, null]\n        },\n        \"info\": {\n          \"en-US\": {\n            \"subtitle\": \"Instantly native with Expo\",\n            \"headerImage\": \"store\u002Fapple\u002Fapp-clip\u002Fen-US\u002Fasc-app-clip.png\"\n          }\n        }\n      }\n    }\n  }\n}\n",[2770],{"type":40,"tag":65,"props":2771,"children":2772},{"__ignoreMap":178},[2773,2780,2809,2833,2857,2881,2918,2943,2967,3020,3028,3052,3076,3114,3147,3155,3163,3170,3177,3184],{"type":40,"tag":184,"props":2774,"children":2775},{"class":186,"line":187},[2776],{"type":40,"tag":184,"props":2777,"children":2778},{"style":191},[2779],{"type":46,"value":194},{"type":40,"tag":184,"props":2781,"children":2782},{"class":186,"line":197},[2783,2787,2792,2796,2800,2805],{"type":40,"tag":184,"props":2784,"children":2785},{"style":191},[2786],{"type":46,"value":203},{"type":40,"tag":184,"props":2788,"children":2789},{"style":206},[2790],{"type":46,"value":2791},"configVersion",{"type":40,"tag":184,"props":2793,"children":2794},{"style":191},[2795],{"type":46,"value":213},{"type":40,"tag":184,"props":2797,"children":2798},{"style":191},[2799],{"type":46,"value":171},{"type":40,"tag":184,"props":2801,"children":2802},{"style":260},[2803],{"type":46,"value":2804}," 0",{"type":40,"tag":184,"props":2806,"children":2807},{"style":191},[2808],{"type":46,"value":289},{"type":40,"tag":184,"props":2810,"children":2811},{"class":186,"line":225},[2812,2816,2821,2825,2829],{"type":40,"tag":184,"props":2813,"children":2814},{"style":191},[2815],{"type":46,"value":203},{"type":40,"tag":184,"props":2817,"children":2818},{"style":206},[2819],{"type":46,"value":2820},"apple",{"type":40,"tag":184,"props":2822,"children":2823},{"style":191},[2824],{"type":46,"value":213},{"type":40,"tag":184,"props":2826,"children":2827},{"style":191},[2828],{"type":46,"value":171},{"type":40,"tag":184,"props":2830,"children":2831},{"style":191},[2832],{"type":46,"value":222},{"type":40,"tag":184,"props":2834,"children":2835},{"class":186,"line":251},[2836,2840,2845,2849,2853],{"type":40,"tag":184,"props":2837,"children":2838},{"style":191},[2839],{"type":46,"value":231},{"type":40,"tag":184,"props":2841,"children":2842},{"style":234},[2843],{"type":46,"value":2844},"appClip",{"type":40,"tag":184,"props":2846,"children":2847},{"style":191},[2848],{"type":46,"value":213},{"type":40,"tag":184,"props":2850,"children":2851},{"style":191},[2852],{"type":46,"value":171},{"type":40,"tag":184,"props":2854,"children":2855},{"style":191},[2856],{"type":46,"value":222},{"type":40,"tag":184,"props":2858,"children":2859},{"class":186,"line":292},[2860,2864,2869,2873,2877],{"type":40,"tag":184,"props":2861,"children":2862},{"style":191},[2863],{"type":46,"value":257},{"type":40,"tag":184,"props":2865,"children":2866},{"style":260},[2867],{"type":46,"value":2868},"defaultExperience",{"type":40,"tag":184,"props":2870,"children":2871},{"style":191},[2872],{"type":46,"value":213},{"type":40,"tag":184,"props":2874,"children":2875},{"style":191},[2876],{"type":46,"value":171},{"type":40,"tag":184,"props":2878,"children":2879},{"style":191},[2880],{"type":46,"value":222},{"type":40,"tag":184,"props":2882,"children":2883},{"class":186,"line":326},[2884,2888,2893,2897,2901,2905,2910,2914],{"type":40,"tag":184,"props":2885,"children":2886},{"style":191},[2887],{"type":46,"value":628},{"type":40,"tag":184,"props":2889,"children":2890},{"style":799},[2891],{"type":46,"value":2892},"action",{"type":40,"tag":184,"props":2894,"children":2895},{"style":191},[2896],{"type":46,"value":213},{"type":40,"tag":184,"props":2898,"children":2899},{"style":191},[2900],{"type":46,"value":171},{"type":40,"tag":184,"props":2902,"children":2903},{"style":191},[2904],{"type":46,"value":275},{"type":40,"tag":184,"props":2906,"children":2907},{"style":278},[2908],{"type":46,"value":2909},"PLAY",{"type":40,"tag":184,"props":2911,"children":2912},{"style":191},[2913],{"type":46,"value":213},{"type":40,"tag":184,"props":2915,"children":2916},{"style":191},[2917],{"type":46,"value":289},{"type":40,"tag":184,"props":2919,"children":2920},{"class":186,"line":335},[2921,2925,2930,2934,2938],{"type":40,"tag":184,"props":2922,"children":2923},{"style":191},[2924],{"type":46,"value":628},{"type":40,"tag":184,"props":2926,"children":2927},{"style":799},[2928],{"type":46,"value":2929},"releaseWithAppStoreVersion",{"type":40,"tag":184,"props":2931,"children":2932},{"style":191},[2933],{"type":46,"value":213},{"type":40,"tag":184,"props":2935,"children":2936},{"style":191},[2937],{"type":46,"value":171},{"type":40,"tag":184,"props":2939,"children":2940},{"style":191},[2941],{"type":46,"value":2942}," true,\n",{"type":40,"tag":184,"props":2944,"children":2945},{"class":186,"line":344},[2946,2950,2955,2959,2963],{"type":40,"tag":184,"props":2947,"children":2948},{"style":191},[2949],{"type":46,"value":628},{"type":40,"tag":184,"props":2951,"children":2952},{"style":799},[2953],{"type":46,"value":2954},"reviewDetail",{"type":40,"tag":184,"props":2956,"children":2957},{"style":191},[2958],{"type":46,"value":213},{"type":40,"tag":184,"props":2960,"children":2961},{"style":191},[2962],{"type":46,"value":171},{"type":40,"tag":184,"props":2964,"children":2965},{"style":191},[2966],{"type":46,"value":222},{"type":40,"tag":184,"props":2968,"children":2969},{"class":186,"line":675},[2970,2975,2981,2985,2989,2993,2997,3002,3006,3010,3015],{"type":40,"tag":184,"props":2971,"children":2972},{"style":191},[2973],{"type":46,"value":2974},"          \"",{"type":40,"tag":184,"props":2976,"children":2978},{"style":2977},"--shiki-light:#916B53;--shiki-default:#916B53;--shiki-dark:#916B53",[2979],{"type":46,"value":2980},"invocationUrls",{"type":40,"tag":184,"props":2982,"children":2983},{"style":191},[2984],{"type":46,"value":213},{"type":40,"tag":184,"props":2986,"children":2987},{"style":191},[2988],{"type":46,"value":171},{"type":40,"tag":184,"props":2990,"children":2991},{"style":191},[2992],{"type":46,"value":893},{"type":40,"tag":184,"props":2994,"children":2995},{"style":191},[2996],{"type":46,"value":213},{"type":40,"tag":184,"props":2998,"children":2999},{"style":278},[3000],{"type":46,"value":3001},"https:\u002F\u002Fmay20.expo.app\u002F",{"type":40,"tag":184,"props":3003,"children":3004},{"style":191},[3005],{"type":46,"value":213},{"type":40,"tag":184,"props":3007,"children":3008},{"style":191},[3009],{"type":46,"value":1313},{"type":40,"tag":184,"props":3011,"children":3012},{"style":191},[3013],{"type":46,"value":3014}," null,",{"type":40,"tag":184,"props":3016,"children":3017},{"style":191},[3018],{"type":46,"value":3019}," null]\n",{"type":40,"tag":184,"props":3021,"children":3022},{"class":186,"line":683},[3023],{"type":40,"tag":184,"props":3024,"children":3025},{"style":191},[3026],{"type":46,"value":3027},"        },\n",{"type":40,"tag":184,"props":3029,"children":3030},{"class":186,"line":1397},[3031,3035,3040,3044,3048],{"type":40,"tag":184,"props":3032,"children":3033},{"style":191},[3034],{"type":46,"value":628},{"type":40,"tag":184,"props":3036,"children":3037},{"style":799},[3038],{"type":46,"value":3039},"info",{"type":40,"tag":184,"props":3041,"children":3042},{"style":191},[3043],{"type":46,"value":213},{"type":40,"tag":184,"props":3045,"children":3046},{"style":191},[3047],{"type":46,"value":171},{"type":40,"tag":184,"props":3049,"children":3050},{"style":191},[3051],{"type":46,"value":222},{"type":40,"tag":184,"props":3053,"children":3054},{"class":186,"line":1440},[3055,3059,3064,3068,3072],{"type":40,"tag":184,"props":3056,"children":3057},{"style":191},[3058],{"type":46,"value":2974},{"type":40,"tag":184,"props":3060,"children":3061},{"style":2977},[3062],{"type":46,"value":3063},"en-US",{"type":40,"tag":184,"props":3065,"children":3066},{"style":191},[3067],{"type":46,"value":213},{"type":40,"tag":184,"props":3069,"children":3070},{"style":191},[3071],{"type":46,"value":171},{"type":40,"tag":184,"props":3073,"children":3074},{"style":191},[3075],{"type":46,"value":222},{"type":40,"tag":184,"props":3077,"children":3078},{"class":186,"line":1448},[3079,3084,3089,3093,3097,3101,3106,3110],{"type":40,"tag":184,"props":3080,"children":3081},{"style":191},[3082],{"type":46,"value":3083},"            \"",{"type":40,"tag":184,"props":3085,"children":3086},{"style":1848},[3087],{"type":46,"value":3088},"subtitle",{"type":40,"tag":184,"props":3090,"children":3091},{"style":191},[3092],{"type":46,"value":213},{"type":40,"tag":184,"props":3094,"children":3095},{"style":191},[3096],{"type":46,"value":171},{"type":40,"tag":184,"props":3098,"children":3099},{"style":191},[3100],{"type":46,"value":275},{"type":40,"tag":184,"props":3102,"children":3103},{"style":278},[3104],{"type":46,"value":3105},"Instantly native with Expo",{"type":40,"tag":184,"props":3107,"children":3108},{"style":191},[3109],{"type":46,"value":213},{"type":40,"tag":184,"props":3111,"children":3112},{"style":191},[3113],{"type":46,"value":289},{"type":40,"tag":184,"props":3115,"children":3116},{"class":186,"line":1473},[3117,3121,3126,3130,3134,3138,3143],{"type":40,"tag":184,"props":3118,"children":3119},{"style":191},[3120],{"type":46,"value":3083},{"type":40,"tag":184,"props":3122,"children":3123},{"style":1848},[3124],{"type":46,"value":3125},"headerImage",{"type":40,"tag":184,"props":3127,"children":3128},{"style":191},[3129],{"type":46,"value":213},{"type":40,"tag":184,"props":3131,"children":3132},{"style":191},[3133],{"type":46,"value":171},{"type":40,"tag":184,"props":3135,"children":3136},{"style":191},[3137],{"type":46,"value":275},{"type":40,"tag":184,"props":3139,"children":3140},{"style":278},[3141],{"type":46,"value":3142},"store\u002Fapple\u002Fapp-clip\u002Fen-US\u002Fasc-app-clip.png",{"type":40,"tag":184,"props":3144,"children":3145},{"style":191},[3146],{"type":46,"value":323},{"type":40,"tag":184,"props":3148,"children":3149},{"class":186,"line":1513},[3150],{"type":40,"tag":184,"props":3151,"children":3152},{"style":191},[3153],{"type":46,"value":3154},"          }\n",{"type":40,"tag":184,"props":3156,"children":3157},{"class":186,"line":1521},[3158],{"type":40,"tag":184,"props":3159,"children":3160},{"style":191},[3161],{"type":46,"value":3162},"        }\n",{"type":40,"tag":184,"props":3164,"children":3165},{"class":186,"line":1546},[3166],{"type":40,"tag":184,"props":3167,"children":3168},{"style":191},[3169],{"type":46,"value":1356},{"type":40,"tag":184,"props":3171,"children":3172},{"class":186,"line":1586},[3173],{"type":40,"tag":184,"props":3174,"children":3175},{"style":191},[3176],{"type":46,"value":332},{"type":40,"tag":184,"props":3178,"children":3179},{"class":186,"line":1594},[3180],{"type":40,"tag":184,"props":3181,"children":3182},{"style":191},[3183],{"type":46,"value":341},{"type":40,"tag":184,"props":3185,"children":3187},{"class":186,"line":3186},20,[3188],{"type":40,"tag":184,"props":3189,"children":3190},{"style":191},[3191],{"type":46,"value":350},{"type":40,"tag":53,"props":3193,"children":3194},{},[3195,3196,3201],{"type":46,"value":1646},{"type":40,"tag":65,"props":3197,"children":3199},{"className":3198},[],[3200],{"type":46,"value":3125},{"type":46,"value":3202}," must be a 1800x1200 PNG with no opacity.",{"type":40,"tag":53,"props":3204,"children":3205},{},[3206],{"type":46,"value":3207},"Push back to the store:",{"type":40,"tag":173,"props":3209,"children":3211},{"className":359,"code":3210,"language":361,"meta":178,"style":178},"eas metadata:push\n",[3212],{"type":40,"tag":65,"props":3213,"children":3214},{"__ignoreMap":178},[3215],{"type":40,"tag":184,"props":3216,"children":3217},{"class":186,"line":187},[3218,3222],{"type":40,"tag":184,"props":3219,"children":3220},{"style":234},[3221],{"type":46,"value":2430},{"type":40,"tag":184,"props":3223,"children":3224},{"style":278},[3225],{"type":46,"value":3226}," metadata:push\n",{"type":40,"tag":53,"props":3228,"children":3229},{},[3230,3232],{"type":46,"value":3231},"Apple's recommended App Clip metadata guidelines: ",{"type":40,"tag":74,"props":3233,"children":3236},{"href":3234,"rel":3235},"https:\u002F\u002Fsosumi.ai\u002Fdocumentation\u002Fappclip\u002Fconfiguring-the-launch-experience-of-your-app-clip",[78],[3237],{"type":46,"value":3234},{"type":40,"tag":134,"props":3239,"children":3241},{"id":3240},"what-you-get",[3242],{"type":46,"value":3243},"What you get",{"type":40,"tag":423,"props":3245,"children":3246},{},[3247,3257,3274,3285,3290,3295],{"type":40,"tag":427,"props":3248,"children":3249},{},[3250,3252],{"type":46,"value":3251},"Parent app target: ",{"type":40,"tag":65,"props":3253,"children":3255},{"className":3254},[],[3256],{"type":46,"value":998},{"type":40,"tag":427,"props":3258,"children":3259},{},[3260,3262,3267,3269],{"type":46,"value":3261},"App Clip target: ",{"type":40,"tag":65,"props":3263,"children":3265},{"className":3264},[],[3266],{"type":46,"value":130},{"type":46,"value":3268},", lives in ",{"type":40,"tag":65,"props":3270,"children":3272},{"className":3271},[],[3273],{"type":46,"value":101},{"type":40,"tag":427,"props":3275,"children":3276},{},[3277,3279],{"type":46,"value":3278},"AASA hosted at ",{"type":40,"tag":65,"props":3280,"children":3282},{"className":3281},[],[3283],{"type":46,"value":3284},"https:\u002F\u002Fmay20.expo.app\u002F.well-known\u002Fapple-app-site-association",{"type":40,"tag":427,"props":3286,"children":3287},{},[3288],{"type":46,"value":3289},"Smart App Banner meta tag on every web route",{"type":40,"tag":427,"props":3291,"children":3292},{},[3293],{"type":46,"value":3294},"Every route linked to its native counterpart",{"type":40,"tag":427,"props":3296,"children":3297},{},[3298],{"type":46,"value":3299},"TestFlight build of the parent app with the Clip embedded",{"type":40,"tag":53,"props":3301,"children":3302},{},[3303,3305,3310],{"type":46,"value":3304},"Once Apple invokes the Clip from a URL on the domain, iOS opens ",{"type":40,"tag":65,"props":3306,"children":3308},{"className":3307},[],[3309],{"type":46,"value":101},{"type":46,"value":3311},"'s entry point which loads the React Native app.",{"type":40,"tag":134,"props":3313,"children":3315},{"id":3314},"native-detection-optional",[3316],{"type":46,"value":3317},"Native detection (optional)",{"type":40,"tag":53,"props":3319,"children":3320},{},[3321,3323,3329,3331,3337],{"type":46,"value":3322},"To let JS detect when it's running inside an App Clip and present an install prompt for the full app, create a local Expo module (",{"type":40,"tag":65,"props":3324,"children":3326},{"className":3325},[],[3327],{"type":46,"value":3328},"bunx create-expo-module --local",{"type":46,"value":3330},") that exposes ",{"type":40,"tag":65,"props":3332,"children":3334},{"className":3333},[],[3335],{"type":46,"value":3336},"navigator.appClip.prompt()",{"type":46,"value":90},{"type":40,"tag":53,"props":3339,"children":3340},{},[3341,3343,3348],{"type":46,"value":3342},"See ",{"type":40,"tag":74,"props":3344,"children":3346},{"href":3345},".\u002Freferences\u002Fnative-module.md",[3347],{"type":46,"value":3345},{"type":46,"value":3349}," for the Swift module, TypeScript interface, and usage.",{"type":40,"tag":134,"props":3351,"children":3353},{"id":3352},"references",[3354],{"type":46,"value":3355},"References",{"type":40,"tag":423,"props":3357,"children":3358},{},[3359],{"type":40,"tag":427,"props":3360,"children":3361},{},[3362],{"type":46,"value":3363},".\u002Freferences\u002Fnative-module.md — Local Expo module to detect App Clip context and present the SKOverlay install prompt",{"type":40,"tag":134,"props":3365,"children":3367},{"id":3366},"submitting-feedback",[3368],{"type":46,"value":3369},"Submitting Feedback",{"type":40,"tag":53,"props":3371,"children":3372},{},[3373],{"type":46,"value":3374},"If you encounter errors, misleading or outdated information in this skill, report it so Expo can improve:",{"type":40,"tag":173,"props":3376,"children":3380},{"className":3377,"code":3378,"language":3379,"meta":178,"style":178},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npx --yes submit-expo-feedback@latest --category skills --subject \"expo-app-clip\" \"\u003Cactionable feedback>\"\n","bash",[3381],{"type":40,"tag":65,"props":3382,"children":3383},{"__ignoreMap":178},[3384],{"type":40,"tag":184,"props":3385,"children":3386},{"class":186,"line":187},[3387,3391,3396,3401,3406,3411,3416,3420,3424,3428,3432,3437],{"type":40,"tag":184,"props":3388,"children":3389},{"style":234},[3390],{"type":46,"value":2507},{"type":40,"tag":184,"props":3392,"children":3393},{"style":278},[3394],{"type":46,"value":3395}," --yes",{"type":40,"tag":184,"props":3397,"children":3398},{"style":278},[3399],{"type":46,"value":3400}," submit-expo-feedback@latest",{"type":40,"tag":184,"props":3402,"children":3403},{"style":278},[3404],{"type":46,"value":3405}," --category",{"type":40,"tag":184,"props":3407,"children":3408},{"style":278},[3409],{"type":46,"value":3410}," skills",{"type":40,"tag":184,"props":3412,"children":3413},{"style":278},[3414],{"type":46,"value":3415}," --subject",{"type":40,"tag":184,"props":3417,"children":3418},{"style":191},[3419],{"type":46,"value":275},{"type":40,"tag":184,"props":3421,"children":3422},{"style":278},[3423],{"type":46,"value":4},{"type":40,"tag":184,"props":3425,"children":3426},{"style":191},[3427],{"type":46,"value":213},{"type":40,"tag":184,"props":3429,"children":3430},{"style":191},[3431],{"type":46,"value":275},{"type":40,"tag":184,"props":3433,"children":3434},{"style":278},[3435],{"type":46,"value":3436},"\u003Cactionable feedback>",{"type":40,"tag":184,"props":3438,"children":3439},{"style":191},[3440],{"type":46,"value":323},{"type":40,"tag":53,"props":3442,"children":3443},{},[3444],{"type":46,"value":3445},"Only submit when you have something specific and actionable to report. Include as much relevant context as possible.",{"type":40,"tag":3447,"props":3448,"children":3449},"style",{},[3450],{"type":46,"value":3451},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":3453,"total":3551},[3454,3470,3485,3498,3512,3526,3544],{"slug":3455,"name":3455,"fn":3456,"description":3457,"org":3458,"tags":3459,"stars":23,"repoUrl":24,"updatedAt":3469},"eas-app-stores","deploy and submit Expo apps to stores","EAS service (paid). Deploy Expo apps to the app stores with EAS - build and submit to the iOS App Store, Google Play Store, and TestFlight, configure eas.json build and submit profiles, manage app versions and build numbers, and publish App Store metadata and ASO. Use whenever the user wants to deploy, release, or ship an app to production or the app stores, is preparing a production build, running eas build or eas submit, shipping to TestFlight, bumping version or build numbers, or setting up store listing metadata. For deploying an Expo website or API routes, use the eas-hosting skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3460,3463,3466,3467,3468],{"name":3461,"slug":3462,"type":15},"Android","android",{"name":3464,"slug":3465,"type":15},"Deployment","deployment",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":21,"slug":22,"type":15},"2026-07-24T05:36:44.164663",{"slug":3471,"name":3471,"fn":3472,"description":3473,"org":3474,"tags":3475,"stars":23,"repoUrl":24,"updatedAt":3484},"eas-hosting","deploy Expo websites to EAS Hosting","EAS service (paid). Deploy Expo websites and Expo Router API routes to EAS Hosting - export the web bundle, run eas deploy for production and PR preview URLs, manage environment secrets and custom domains, and work within the Cloudflare Workers runtime. Also covers authoring API routes (+api.ts handlers, HTTP methods, request handling, CORS). Use when deploying an Expo web app or API routes, setting up EAS Hosting, or configuring hosting environments and domains. Not for native builds or store releases - use the eas-app-stores skill for those.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3476,3477,3478,3481],{"name":3464,"slug":3465,"type":15},{"name":9,"slug":8,"type":15},{"name":3479,"slug":3480,"type":15},"Frontend","frontend",{"name":3482,"slug":3483,"type":15},"Web Development","web-development","2026-07-24T05:36:40.193701",{"slug":3486,"name":3486,"fn":3487,"description":3488,"org":3489,"tags":3490,"stars":23,"repoUrl":24,"updatedAt":3497},"eas-observe","configure EAS Observe for Expo apps","EAS service (paid). Use for anything related to EAS Observe - adding `expo-observe` to an Expo project (AppMetricsRoot\u002FObserveRoot HOC, markInteractive, the useObserve hook, the Expo Router \u002F React Navigation integrations for per-route metrics, and user-defined events via `Observe.logEvent`), querying via the EAS CLI (`eas observe:metrics-summary`, `observe:metrics`, `observe:routes`, `observe:events`, `observe:versions`), or interpreting the resulting metrics (cold\u002Fwarm launch, TTR, TTI, navigation cold\u002Fwarm TTR, update download, and the TTI frameRate params for triaging slow startups).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3491,3492,3493,3496],{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":3494,"slug":3495,"type":15},"Observability","observability",{"name":13,"slug":14,"type":15},"2026-07-24T05:36:45.220605",{"slug":3499,"name":3499,"fn":3500,"description":3501,"org":3502,"tags":3503,"stars":23,"repoUrl":24,"updatedAt":3511},"eas-simulator","run and control remote iOS and Android simulators","EAS service (paid). Run and control a user's app on a remote iOS\u002FAndroid simulator hosted on EAS cloud. Read before running any `eas simulator:*` commands - it has the current syntax for this experimental API. Use whenever the user needs a simulator they can't run locally - 'run my app on a cloud simulator', 'use eas simulator to run\u002Finstall\u002Fscreenshot my app', 'I'm on Linux\u002FCursor and need an iOS device', 'no sim on this box \u002F headless CI', 'let an agent click through my app and screenshot it', 'test my dev build on a remote sim with live reload', 'stream a sim to my browser' - even when they don't say 'EAS Simulator' or 'cloud'. On a host WITHOUT a local simulator (Linux, CI, cloud sandbox) it's the default; on macOS, do NOT auto-trigger for a plain 'run on the simulator' - use it only for a cloud\u002Fremote\u002Fshareable sim, an iOS version they lack, or an agent-driven session. NOT for local sims (expo run:ios, Xcode, Android Studio), EAS Build\u002FUpdate, web preview, or physical devices.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3504,3505,3508,3509,3510],{"name":3461,"slug":3462,"type":15},{"name":3506,"slug":3507,"type":15},"CLI","cli",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":21,"slug":22,"type":15},"2026-07-31T05:52:18.602058",{"slug":3513,"name":3513,"fn":3514,"description":3515,"org":3516,"tags":3517,"stars":23,"repoUrl":24,"updatedAt":3525},"eas-update-insights","check health of EAS Updates","EAS service (paid). Check the health of published EAS Update: crash rates, install\u002Flaunch counts, unique users, payload size, and the split between embedded and OTA users per channel. Use when the user asks how an update is performing, whether a rollout is healthy, how many users are on the embedded build vs OTA, or wants to gate CI on update health.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3518,3521,3522,3523,3524],{"name":3519,"slug":3520,"type":15},"Analytics","analytics",{"name":3464,"slug":3465,"type":15},{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":3494,"slug":3495,"type":15},"2026-07-24T05:36:50.17095",{"slug":3527,"name":3527,"fn":3528,"description":3529,"org":3530,"tags":3531,"stars":23,"repoUrl":24,"updatedAt":3543},"eas-workflows","configure EAS workflows for Expo projects","EAS service (paid). Helps understand and write EAS workflow YAML files for Expo projects. Use this skill when the user asks about CI\u002FCD or workflows in an Expo or EAS context, mentions .eas\u002Fworkflows\u002F, or wants help with EAS build pipelines or deployment automation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3532,3535,3538,3539,3540],{"name":3533,"slug":3534,"type":15},"Automation","automation",{"name":3536,"slug":3537,"type":15},"CI\u002FCD","ci-cd",{"name":3464,"slug":3465,"type":15},{"name":9,"slug":8,"type":15},{"name":3541,"slug":3542,"type":15},"YAML","yaml","2026-07-24T05:36:43.205514",{"slug":4,"name":4,"fn":5,"description":6,"org":3545,"tags":3546,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3547,3548,3549,3550],{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":21,"slug":22,"type":15},{"name":13,"slug":14,"type":15},22,{"items":3553,"total":3677},[3554,3562,3569,3576,3584,3592,3600,3607,3622,3640,3655,3666],{"slug":3455,"name":3455,"fn":3456,"description":3457,"org":3555,"tags":3556,"stars":23,"repoUrl":24,"updatedAt":3469},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3557,3558,3559,3560,3561],{"name":3461,"slug":3462,"type":15},{"name":3464,"slug":3465,"type":15},{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":21,"slug":22,"type":15},{"slug":3471,"name":3471,"fn":3472,"description":3473,"org":3563,"tags":3564,"stars":23,"repoUrl":24,"updatedAt":3484},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3565,3566,3567,3568],{"name":3464,"slug":3465,"type":15},{"name":9,"slug":8,"type":15},{"name":3479,"slug":3480,"type":15},{"name":3482,"slug":3483,"type":15},{"slug":3486,"name":3486,"fn":3487,"description":3488,"org":3570,"tags":3571,"stars":23,"repoUrl":24,"updatedAt":3497},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3572,3573,3574,3575],{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":3494,"slug":3495,"type":15},{"name":13,"slug":14,"type":15},{"slug":3499,"name":3499,"fn":3500,"description":3501,"org":3577,"tags":3578,"stars":23,"repoUrl":24,"updatedAt":3511},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3579,3580,3581,3582,3583],{"name":3461,"slug":3462,"type":15},{"name":3506,"slug":3507,"type":15},{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":21,"slug":22,"type":15},{"slug":3513,"name":3513,"fn":3514,"description":3515,"org":3585,"tags":3586,"stars":23,"repoUrl":24,"updatedAt":3525},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3587,3588,3589,3590,3591],{"name":3519,"slug":3520,"type":15},{"name":3464,"slug":3465,"type":15},{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":3494,"slug":3495,"type":15},{"slug":3527,"name":3527,"fn":3528,"description":3529,"org":3593,"tags":3594,"stars":23,"repoUrl":24,"updatedAt":3543},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3595,3596,3597,3598,3599],{"name":3533,"slug":3534,"type":15},{"name":3536,"slug":3537,"type":15},{"name":3464,"slug":3465,"type":15},{"name":9,"slug":8,"type":15},{"name":3541,"slug":3542,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":3601,"tags":3602,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3603,3604,3605,3606],{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":21,"slug":22,"type":15},{"name":13,"slug":14,"type":15},{"slug":3608,"name":3608,"fn":3609,"description":3610,"org":3611,"tags":3612,"stars":23,"repoUrl":24,"updatedAt":3621},"expo-brownfield","integrate Expo and React Native into native apps","Framework (OSS). Integrate Expo and React Native into an existing native iOS or Android app. Use when the user mentions brownfield, embedding React Native in a native app, AAR\u002FXCFramework, or adding Expo to an existing Kotlin\u002FSwift project. Covers both the isolated approach and the integrated approach.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3613,3614,3615,3618,3619,3620],{"name":3461,"slug":3462,"type":15},{"name":9,"slug":8,"type":15},{"name":3616,"slug":3617,"type":15},"Integrations","integrations",{"name":18,"slug":19,"type":15},{"name":21,"slug":22,"type":15},{"name":13,"slug":14,"type":15},"2026-07-24T05:36:39.682299",{"slug":3623,"name":3623,"fn":3624,"description":3625,"org":3626,"tags":3627,"stars":23,"repoUrl":24,"updatedAt":3639},"expo-data-fetching","fetch and manage data in Expo apps","Framework (OSS). Use when implementing or debugging ANY network request, API call, or data fetching. Covers fetch API, React Query, SWR, error handling, caching, offline support, and Expo Router data loaders (`useLoaderData`).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3628,3631,3634,3635,3636],{"name":3629,"slug":3630,"type":15},"API Development","api-development",{"name":3632,"slug":3633,"type":15},"Caching","caching",{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},{"name":3637,"slug":3638,"type":15},"React","react","2026-07-24T05:36:42.177188",{"slug":3641,"name":3641,"fn":3642,"description":3643,"org":3644,"tags":3645,"stars":23,"repoUrl":24,"updatedAt":3654},"expo-dev-client","build and distribute Expo development clients","Framework (OSS). Build and distribute Expo development clients locally or via TestFlight for internal testing. For production TestFlight releases and store submission, use the eas-app-stores skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3646,3647,3648,3649,3650,3653],{"name":3461,"slug":3462,"type":15},{"name":3464,"slug":3465,"type":15},{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"name":3651,"slug":3652,"type":15},"Local Development","local-development",{"name":21,"slug":22,"type":15},"2026-07-24T05:36:51.160719",{"slug":3656,"name":3656,"fn":3657,"description":3658,"org":3659,"tags":3660,"stars":23,"repoUrl":24,"updatedAt":3665},"expo-dom","run web components in native apps","Framework (OSS). Use Expo DOM components to run web code in a webview on native and as-is on web. Migrate web code to native incrementally. For the end-to-end migration of a whole web app, use the expo-web-to-native skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3661,3662,3663,3664],{"name":9,"slug":8,"type":15},{"name":3479,"slug":3480,"type":15},{"name":21,"slug":22,"type":15},{"name":13,"slug":14,"type":15},"2026-07-24T05:36:41.176872",{"slug":3667,"name":3667,"fn":3668,"description":3669,"org":3670,"tags":3671,"stars":23,"repoUrl":24,"updatedAt":3676},"expo-examples","integrate Expo example projects","Framework (OSS). Expo's official example projects - the expo\u002Fexamples repo of ~70 `with-*` integrations (Stripe, Clerk, Supabase, OpenAI, maps, Reanimated, SQLite, Skia, NativeWind, and more). Use when integrating a third-party library or service into an existing Expo app and you want the canonical, version-matched pattern to adapt, or when scaffolding a new project from one with `npx create-expo --example`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3672,3673,3674,3675],{"name":9,"slug":8,"type":15},{"name":3616,"slug":3617,"type":15},{"name":21,"slug":22,"type":15},{"name":13,"slug":14,"type":15},"2026-07-24T05:36:35.174379",24]