File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -76,12 +76,17 @@ const intentFilters = variant.linkHost
7676
7777// Dev Tool branches load OTA through the dev launcher's deep-link load path
7878// (couchers-devtool://expo-development-client/?url=...), so no update URL is
79- // baked in and manifests are served unsigned over HTTPS. Staging and production
80- // stay on EAS Update.
79+ // baked in and manifests are served unsigned over HTTPS.
80+ //
81+ // Staging points at our self-hosted OTA backend (cut 1: validating the Expo
82+ // Updates protocol + native<->backend transport, unsigned). Production stays on
83+ // EAS Update until staging is proven, then flips here too.
8184const updates =
8285 APP_VARIANT === "devtool"
8386 ? { enabled : true }
84- : { url : "https://u.expo.dev/fb4fc9aa-d8b2-45a5-82aa-be05e99b0413" } ;
87+ : APP_VARIANT === "staging"
88+ ? { url : "https://dev-api.couchershq.org/mobile/ota/manifest" }
89+ : { url : "https://u.expo.dev/fb4fc9aa-d8b2-45a5-82aa-be05e99b0413" } ;
8590
8691export default {
8792 name : variant . name ,
You can’t perform that action at this time.
0 commit comments