-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
eas.json
50 lines (50 loc) · 997 Bytes
/
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
{
"cli": {
"version": ">= 3.5.1"
},
"build": {
"development": {
"channel": "development",
"developmentClient": true,
"distribution": "internal",
"ios": {
"resourceClass": "m1-medium"
},
"env": {
"AQICN_TOKEN": "6bb4237574756ba29f05cea553bd22576596c11e",
"BACKEND_URL": "https://staging.shootismoke.vercel.app",
"BACKEND_SECRET": "staging-ssshhh!"
}
},
"preview": {
"channel": "master",
"distribution": "internal",
"ios": {
"resourceClass": "m1-medium"
},
"env": {
"AQICN_TOKEN": "6bb4237574756ba29f05cea553bd22576596c11e",
"BACKEND_URL": "https://staging.shootismoke.vercel.app",
"BACKEND_SECRET": "staging-ssshhh!"
}
},
"apk": {
"android": {
"buildType": "apk"
},
"extends": "production"
},
"production": {
"channel": "production",
"ios": {
"resourceClass": "m1-medium"
},
"env": {
"BACKEND_URL": "https://shootismoke.app"
}
}
},
"submit": {
"production": {}
}
}