Skip to content

Instantly share code, notes, and snippets.

@hyochan
Created October 25, 2023 07:40
Show Gist options
  • Save hyochan/b93c8014e1a00f213c479687102bd673 to your computer and use it in GitHub Desktop.
Save hyochan/b93c8014e1a00f213c479687102bd673 to your computer and use it in GitHub Desktop.
eas.json
{
"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