Skip to content

Instantly share code, notes, and snippets.

@karthiks
Last active May 11, 2026 12:29
Show Gist options
  • Select an option

  • Save karthiks/a09f0d5b0c569cb4413c1292e020fc20 to your computer and use it in GitHub Desktop.

Select an option

Save karthiks/a09f0d5b0c569cb4413c1292e020fc20 to your computer and use it in GitHub Desktop.
Sample EAS.json config file that EAS CLI uses to configure project builds in its server
{
"build": {
"development": {
"developmentClient": true,
"distribution": "internal",
"autoIncrement": true,
"android": {
"gradleCommand": ":app:assembleDebug",
"buildType": "apk"
}
},
"preview": {
"distribution": "internal",
"autoIncrement": true,
"android": {
"buildType": "apk"
},
"env": {
"API_URL": "https://staging-api.example.com"
}
},
"production": {
"autoIncrement": true,
"env": {
"API_URL": "https://api.example.com"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment