-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheas.json
More file actions
44 lines (44 loc) · 1.21 KB
/
eas.json
File metadata and controls
44 lines (44 loc) · 1.21 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
41
42
43
44
{
"cli": {
"version": ">= 15.0.10",
"appVersionSource": "remote"
},
"build": {
"ios": {
"node": "20.19.4",
"yarn": "1.22.22",
"resourceClass": "medium",
"credentialsSource": "local",
"prebuildCommand": "yarn install --legacy-peer-deps && node scripts/patch-autosizing-stack.js && node scripts/fix-object-version.js && node scripts/update-app-icon.js && node scripts/auto-version.js",
"autoIncrement": true
},
"development": {
"developmentClient": true,
"distribution": "internal",
"node": "20.19.4"
},
"preview": {
"distribution": "internal",
"node": "20.19.4"
},
"production": {
"autoIncrement": true,
"developmentClient": false,
"node": "20.19.4",
"yarn": "1.22.22",
"env": {
"EXPO_NO_DEV_CLIENT": "1"
},
"android": {
"resourceClass": "medium"
},
"ios": {
"resourceClass": "medium",
"prebuildCommand": "yarn install --legacy-peer-deps && node scripts/patch-autosizing-stack.js && node scripts/fix-object-version.js && node scripts/update-app-icon.js && node scripts/auto-version.js"
}
}
},
"submit": {
"production": {}
}
}