Created
August 12, 2022 08:42
-
-
Save wodin/d2ec29d854be6f237ad63b3b6da3d604 to your computer and use it in GitHub Desktop.
Simple EAS Build config with simulator build profiles
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
{ | |
"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