Development Build

Basically like your own version of Expo Go that you install on your device

In eas.json, add development client true and distribution internal

eas.json

{
  "build": {
    "development": {
      "developmentClient": true,
      "distribution": "internal"
    },
    "preview": {
      "distribution": "internal"
    },
    "production": {}
  }
}

Last updated