-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy patheas.json
57 lines (57 loc) · 1.09 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
{
"cli": {
"version": ">=14.5.0",
"appVersionSource": "remote"
},
"build": {
"_shared": {
"autoIncrement": true,
"node": "20.18.0",
"ios": {
"cocoapods": "1.16.2",
"image": "macos-sonoma-14.6-xcode-16.1"
},
"android": {
"resourceClass": "large"
}
},
"development": {
"extends": "_shared",
"developmentClient": true,
"distribution": "internal",
"channel": "development",
"environment": "development"
},
"preview": {
"extends": "_shared",
"channel": "preview",
"environment": "preview"
},
"production": {
"extends": "_shared",
"channel": "production",
"environment": "production",
"android": {
"buildType": "app-bundle"
}
}
},
"submit": {
"preview": {
"android": {
"track": "internal"
},
"ios": {
"ascAppId": "6478027666"
}
},
"production": {
"android": {
"track": "internal"
},
"ios": {
"ascAppId": "1658819514"
}
}
}
}