Build & Deploy

Prerequisites

  • Install eas-cli and login

npm install -g eas-cli && eas login

Build for IOS

  1. Update the version in app.json

    {
        "version": "1.0.1"
    }
  2. Build the app

    eas build --platform ios
  3. Submit the app to the app store

    eas submit -p ios --latest
  4. (alternatively) you can run this one line to do both

    eas build -p ios --profile production --auto-submit

Build for Android

🚨 Coming Soon 🚨

Last updated