Walkthrough
Building IPA and APK
EAS Build basics. The .ipa and .apk artifacts you'll need.
EAS Build is the cloud builder Expo provides. You don't need a Mac for iOS builds, you don't need to wrestle with provisioning profiles, and you get a real signed artifact at the end. Free tier covers occasional builds; paid tiers cover daily releases.
Steps · 0 / 4 done
Install eas-cli + log in
One-time setup.
npm install -g eas-cli eas loginVerifyeas whoami prints your account.Configure builds
Generate eas.json with sensible defaults — internal distribution for staging, store distribution for production.
eas build:configureVerifyeas.json appears with development, preview, and production profiles.Trigger a build
iOS first; the first build takes 15–25 minutes while EAS provisions.
eas build --platform ios --profile previewVerifyBuild completes; you get an .ipa download link and an internal-distribution install URL.Android too
Same command, different platform.
eas build --platform android --profile previewVerifyAn .apk for sideloading or .aab for the Play Store.
Check your understanding
Q1. What does EAS Build's preview profile produce that's different from production?
· Tick off the 4 step(s) above.
· Score 100% on the quiz.