Local Build Workflow (APK and .app) Overview Generate two shell scripts that build release artifacts for an Expo / React Native project using the platform toolchains directly: - → runs and copies the APK into - → runs for the iOS Simulator and copies the into Both scripts replace the previous artifact on each run, so the output path is always predictable. Why this exists: Debug builds on an Expo project include and launch the "Development Servers" picker instead of the app UI. For e2e runs, teammate previews, or real device installs, you need a Release build, and that's what these scripts pro…