-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eas.json
136 lines (136 loc) · 3.22 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"cli": {
"version": ">= 2.3.0"
},
"build": {
"consumer-v10-internal": {
"env": {
"FLAVOR": "consumer"
},
"channel": "v10",
"distribution": "internal",
"android": {
"buildType": "apk"
}
},
"consumer-v10-internal-dev": {
"extends": "consumer-v10-internal",
"env": {
"ENV": "dev",
"GOOGLE_SERVICES_FILE": "./google-services-dev.json"
}
},
"consumer-v10-internal-staging": {
"extends": "consumer-v10-internal",
"env": {
"ENV": "staging",
"GOOGLE_SERVICES_FILE": "./google-services-staging.json"
}
},
"consumer-v10-internal-live": {
"extends": "consumer-v10-internal",
"env": {
"ENV": "live",
"GOOGLE_SERVICES_FILE": "./google-services-live.json"
}
},
"consumer-v10-store-live": {
"env": {
"FLAVOR": "consumer",
"ENV": "live",
"GOOGLE_SERVICES_FILE": "./google-services-dev.json"
},
"channel": "v10",
"distribution": "store",
"android": {
"buildType": "app-bundle"
}
},
"courier-v10-internal": {
"env": {
"FLAVOR": "courier"
},
"channel": "v10",
"distribution": "internal",
"android": {
"buildType": "apk"
}
},
"courier-v10-internal-dev": {
"extends": "courier-v10-internal",
"env": {
"ENV": "dev",
"GOOGLE_SERVICES_FILE": "./google-services-dev.json"
}
},
"courier-v10-internal-staging": {
"extends": "courier-v10-internal",
"env": {
"ENV": "staging",
"GOOGLE_SERVICES_FILE": "./google-services-staging.json"
}
},
"courier-v10-internal-live": {
"extends": "courier-v10-internal",
"env": {
"ENV": "live",
"GOOGLE_SERVICES_FILE": "./google-services-live.json"
}
},
"courier-v10-store-live": {
"env": {
"FLAVOR": "courier",
"ENV": "live",
"GOOGLE_SERVICES_FILE": "./google-services-live.json"
},
"channel": "v10",
"distribution": "store",
"android": {
"buildType": "app-bundle"
}
},
"business-v10-internal": {
"env": {
"FLAVOR": "business"
},
"channel": "v10",
"distribution": "internal",
"android": {
"buildType": "apk"
}
},
"business-v10-internal-dev": {
"extends": "business-v10-internal",
"env": {
"ENV": "dev",
"GOOGLE_SERVICES_FILE": "./google-services-dev.json"
}
},
"business-v10-internal-staging": {
"extends": "business-v10-internal",
"env": {
"ENV": "staging",
"GOOGLE_SERVICES_FILE": "./google-services-staging.json"
}
},
"business-v10-internal-live": {
"extends": "business-v10-internal",
"env": {
"ENV": "live",
"GOOGLE_SERVICES_FILE": "./google-services-live.json"
}
},
"business-v10-store-live": {
"env": {
"FLAVOR": "business",
"ENV": "live",
"GOOGLE_SERVICES_FILE": "./google-services-live.json"
},
"channel": "v10",
"distribution": "store",
"android": {
"buildType": "app-bundle"
}
}
}
}