Skip to content

Instantly share code, notes, and snippets.

@wodin
Created August 12, 2022 08:42
Show Gist options
  • Save wodin/d2ec29d854be6f237ad63b3b6da3d604 to your computer and use it in GitHub Desktop.
Save wodin/d2ec29d854be6f237ad63b3b6da3d604 to your computer and use it in GitHub Desktop.
Simple EAS Build config with simulator build profiles
{
"cli": {
"version": ">= 0.52.0"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal"
},
"sim-dev": {
"extends": "development",
"ios": {
"simulator": true
}
},
"preview": {
"distribution": "internal"
},
"sim-preview": {
"extends": "preview",
"ios": {
"simulator": true
}
},
"production": {}
},
"submit": {
"production": {}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment