Created
October 25, 2023 07:40
-
-
Save hyochan/b93c8014e1a00f213c479687102bd673 to your computer and use it in GitHub Desktop.
eas.json
This file contains 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": ">= 3.8.1" | |
}, | |
"build": { | |
"development": { | |
"channel": "development", | |
"developmentClient": true, | |
"distribution": "internal", | |
"android": { | |
"buildType": "apk" | |
}, | |
"ios": { | |
"simulator": true | |
} | |
}, | |
"development-debug": { | |
"extends": "development", | |
"env": { | |
"EX_UPDATES_NATIVE_DEBUG": "1" | |
}, | |
"android": { | |
"withoutCredentials": true, | |
"gradleCommand": ":app:assembleDebug" | |
}, | |
"ios": { | |
"simulator": true, | |
"buildConfiguration": "Debug" | |
} | |
}, | |
"production": { | |
"channel": "production", | |
"cache": { | |
"disabled": true | |
} | |
} | |
}, | |
"submit": { | |
"production": {} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment