MobileReact nativeExpo
Expo Updates
Configuring Expo Updates
- For Expo Project: https://docs.expo.dev/deploy/instant-updates/
- Runtime Version and Updates: https://docs.expo.dev/eas-update/runtime-versions/
Build and Publish Expo Update with Dynamic App Config
use cross-env or dotenv in CLI to set the env value during running eas update
Build and Publish Expo Update with Environment Context
EAS Update doesn't read env from eas.json, it will read .env
add
NODE_ENV=production/test/development
and make sure to add--clear-cache
(to make sure expo loads the fresh value of the selected environment variables)
References: