-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patheas.json
More file actions
40 lines (40 loc) · 1.44 KB
/
eas.json
File metadata and controls
40 lines (40 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"cli": { "appVersionSource": "local" },
"build": {
"base": {
"resourceClass": "large",
"node": "24.13.0",
"pnpm": "10.28.1",
"android": { "image": "latest" },
"ios": { "image": "latest" }
},
"production": { "extends": "base", "channel": "production" },
"beta": { "extends": "base", "channel": "beta" },
"e2e:production": {
"extends": "base",
"environment": "development",
"distribution": "internal",
"withoutCredentials": true,
"env": { "EXPO_PUBLIC_ENV": "e2e", "SENTRY_ALLOW_FAILURE": "true" },
"android": { "buildType": "apk" },
"ios": { "simulator": true }
},
"e2e:local": { "extends": "e2e:production", "env": { "APP_DOMAIN": "localhost", "CHAIN_ID": "31337" } },
"preview": { "extends": "base", "environment": "preview", "channel": "preview", "distribution": "internal" },
"development": {
"extends": "base",
"environment": "development",
"distribution": "internal",
"developmentClient": true
}
},
"submit": {
"base": {
"android": { "track": "internal", "releaseStatus": "draft", "changesNotSentForReview": true },
"ios": { "appleTeamId": "665NDX7LBZ", "ascAppId": "6572315454", "sku": "exa", "groups": ["inner"] }
},
"preview": { "extends": "base" },
"beta": { "extends": "base", "android": { "track": "beta" } },
"production": { "extends": "base", "android": { "track": "production" } }
}
}