Build an iOS Simulator .app in Expo

  • modify the build profile in eas.json and add the following waldo-ios profile:
{
  "build": {
    "waldo-ios": {
      "ios": {
        "simulator": true
      }
    },
    "production": {}
  }
}
  • now you can run the eas build command with that profile:
eas build -p ios --profile waldo-ios
# โœ” Build finished
# ๐ŸŽ iOS app:
# https://expo.dev/artifacts/eas/kYnbyzM6fHVmd9ytUZyN3b.tar.gz
  • download the .tar.gz file, extract it and voilร , you have your .app file!

Build an Android emulator .apk in Expo

  • modify the build profile in eas.json and add the following waldo-android profile:
{
  "build": {
    "waldo-android": {
      "android": {
        "buildType": "apk"
      }
    },
    "production": {}
  }
}
  • now you can run the eas build command with that profile:
eas build -p android --profile waldo-android
# โœ” Build finished
# ๐Ÿค– Android app:
# https://expo.dev/artifacts/eas/mH8xyCMyaL8x8krS1eMexB.apk
  • download the .apk file and voilร !