-
Notifications
You must be signed in to change notification settings - Fork 16
/
eas.json
109 lines (109 loc) · 2.55 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"cli": {
"version": ">= 4.1.0",
"appVersionSource": "local"
},
"build": {
"base": {
"node": "18.17.0",
"ios": {
"resourceClass": "m-medium"
},
"env": {
"YARN_ENABLE_IMMUTABLE_INSTALLS": "false"
}
},
"base-aoe2": {
"extends": "base",
"env": {
"APP": "aoe2"
}
},
"base-aoe4": {
"extends": "base",
"env": {
"APP": "aoe4"
}
},
"development-aoe2": {
"extends": "base-aoe2",
"channel": "production",
"developmentClient": true,
"distribution": "internal"
},
"development-aoe4": {
"extends": "base-aoe4",
"channel": "production",
"developmentClient": true,
"distribution": "internal"
},
"development-simulator-aoe2": {
"extends": "base-aoe2",
"channel": "production",
"developmentClient": true,
"distribution": "internal",
"ios": {
"simulator": true
}
},
"development-simulator-aoe4": {
"extends": "base-aoe4",
"channel": "production",
"developmentClient": true,
"distribution": "internal",
"ios": {
"simulator": true
}
},
"internal-aoe2": {
"extends": "base-aoe2",
"channel": "production",
"distribution": "internal"
},
"internal-aoe4": {
"extends": "base-aoe4",
"channel": "production",
"distribution": "internal"
},
"production-aoe2": {
"extends": "base-aoe2",
"channel": "production"
},
"production-aoe4": {
"extends": "base-aoe4",
"channel": "production"
}
},
"submit": {
"production-aoe2": {
"android": {
"track": "production",
"releaseStatus": "draft",
"serviceAccountKeyPath": "play-store-service-account.json"
},
"ios": {
"ascAppId": "1518463195",
"appleTeamId": "HAFGZBHF9M",
"sku": "com.aoe2companion",
"ascApiKeyPath": "auth_key.p8",
"ascApiKeyIssuerId": "fb7451c8-c140-408a-be1d-375ba4e5045c",
"ascApiKeyId": "VJ4G795F6S"
}
},
"production-aoe4": {
"android": {
"track": "production",
"releaseStatus": "draft",
"serviceAccountKeyPath": "play-store-service-account.json"
},
"ios": {
"ascAppId": "1601333682",
"appleTeamId": "HAFGZBHF9M",
"sku": "com.aoe4companion",
"ascApiKeyPath": "auth_key.p8",
"ascApiKeyIssuerId": "fb7451c8-c140-408a-be1d-375ba4e5045c",
"ascApiKeyId": "VJ4G795F6S"
}
}
}
}