Last active
May 11, 2026 12:29
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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