-
Notifications
You must be signed in to change notification settings - Fork 17
/
eas.json
68 lines (68 loc) · 1.41 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
59
60
61
62
63
64
65
66
67
68
{
"cli": {
"appVersionSource": "remote",
"version": ">= 3.9.0"
},
"build": {
"development-simulator": {
"env": {
"STAGE": "development",
"FLIPPER_DISABLE": "1",
"EXPO_NO_DOTENV": "1"
},
"developmentClient": true,
"distribution": "internal",
"ios": {
"resourceClass": "large",
"simulator": true
}
},
"development": {
"env": {
"STAGE": "development",
"FLIPPER_DISABLE": "1",
"EXPO_NO_DOTENV": "1"
},
"developmentClient": true,
"distribution": "internal",
"ios": {
"resourceClass": "large"
},
"channel": "development"
},
"preview": {
"env": {
"STAGE": "test",
"FLIPPER_DISABLE": "1",
"EXPO_NO_DOTENV": "1"
},
"distribution": "internal",
"ios": {
"resourceClass": "large"
},
"channel": "preview",
"autoIncrement": true
},
"production": {
"env": {
"STAGE": "production",
"FLIPPER_DISABLE": "1",
"EXPO_NO_DOTENV": "1"
},
"ios": {
"resourceClass": "large"
},
"channel": "production",
"autoIncrement": true
}
},
"submit": {
"production": {
"ios":{
"appName": "xLog - On-Chain Blogging",
"ascAppId": "6449499296",
"appleId": "[email protected]"
}
}
}
}