-
Notifications
You must be signed in to change notification settings - Fork 0
/
eas.json
58 lines (58 loc) · 1.09 KB
/
eas.json
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"cli": {
"version": ">= 3.6.1"
},
"build": {
"base": {
"node": "16.10.0",
"distribution": "store",
"android": {
"image": "default",
"env": {
"PLATFORM": "android"
},
"buildType": "apk"
},
"ios": {
"image": "latest",
"env": {
"PLATFORM": "ios"
}
}
},
"development": {
"developmentClient": true,
"distribution": "internal",
"env": {
"ENVIRONMENT": "development"
},
"android": {
"distribution": "internal",
"withoutCredentials": true,
"buildType": "apk"
}
},
"staging": {
"extends": "base",
"env": {
"ENVIRONMENT": "staging",
"NODE_ENV": "staging"
},
"distribution": "internal",
"android": {
"buildType": "apk"
}
},
"production": {
"developmentClient": false,
"distribution": "store",
"env": {
"ENVIRONMENT": "production",
"NODE_ENV": "main"
}
}
},
"submit": {
"production": {}
}
}