-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheas.json
59 lines (59 loc) · 1.08 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
{
"cli": {
"version": ">= 0.57.0",
"appVersionSource": "remote"
},
"build": {
"base": {
"autoIncrement": true,
"cache": {
"key": "expo50"
}
},
"development": {
"extends": "base",
"distribution": "internal",
"android": {
"gradleCommand": ":app:assembleDebug"
},
"ios": {
"simulator": true,
"buildConfiguration": "Debug"
}
},
"preview": {
"channel": "master",
"distribution": "internal",
"extends": "base",
"android": {
"gradleCommand": ":app:assembleRelease"
},
"ios": {
"simulator": false,
"buildConfiguration": "Debug"
}
},
"staging": {
"channel": "master",
"extends": "base"
},
"production": {
"channel": "production",
"extends": "base"
}
},
"submit": {
"base": {
"ios": {
"ascAppId": "1620904531",
"appleTeamId": "R263JVGPBB"
}
},
"production": {
"extends": "base"
},
"staging": {
"extends": "base"
}
}
}