custom-expo-updates-server
custom-expo-updates-server copied to clipboard
So far I didn't have success using this project to serve updates to my App. I'm using Expo Updates package, the App.tsx looks like this: ```tsx import * as Updates...
The id get from header['expo-current-update-id'] is ulid, so we need to convert SHA265 hash to ulid before comparing. Thank you for your project.
When deploying on vercel I get the following warning: I also get the following error when trying to download an update: **API response for /api/assets?runtimeVersion=84.0.0&platform=ios&asset=...873.hbc exceeds 4MB**. API Routes are...
This PR updates the example to SDK 50 and implements the `manifest` and `assets` api endpoints in an expo-router express server using express middleware. The benefit of this approach is...
In the code we are doing equality check on `currentUpdateId` & `id` in line #122. Which fails everytime because we are passing a hash in the `manifest` API request from...
Hi all, If we were to use a custom updates serer, how much of EAS cloud services do we still make use of behind the scenes? If any, do EAS...
Hi, i' copied your repo to try it and i'm following the readme file. When i have to build i get this error. error: Build input file cannot be found:...
For those who don't want to consider the runtime of a project every time, you can extract it from `app.json` using the `exportClientExpoConfig.js` script and manipulate the JSON using the...
Hi, I am currently working on create a .NET Core server to serve the expo updates. In the example here I see that it always responded with content-type: multipart/mixed. while...
Hi there, On my WSL2 development setup, for whatever reason fs.stat().birthtimeMs returns 0 and therefore .birthtime is incorrect (but truthy). I found that using .ctime instead works fine. I also...