custom-expo-updates-server
custom-expo-updates-server copied to clipboard
I created my custom server and generated my private and public keys using an OpenSSL command. In my client, I added the folder with the certificate.pem file to the root...
This will block the server responding from other requests, shouldn't this be using the async equivalent apis from fs? `await util.promisify(fs.readFile)(filepath)` https://github.com/expo/custom-expo-updates-server/blob/main/expo-updates-server/pages/api/assets.ts#LL63C22-L63C34
* npm run expo-publish-win
If the application uses the extra field in expo.json to set custom runtime parameters (as we do), then they will be missing in Constants.manifest2 after an OTA update due to...
When running expo-updates-server natively on Windows asset URLs get a path with some backslashes like `/api/assets?asset=updates\1.0.0\1675941667/assets/62c0135163427c652ae397f327f85010&runtimeVersion=1.0.0&platform=ios`. NSURL in iOS does not like this, which results in asset URLs becoming nil...