-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheas.json
63 lines (63 loc) · 1.62 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
{
"cli": {
"version": ">= 4.1.2",
"promptToConfigurePushNotifications": false,
"appVersionSource": "remote"
},
"build": {
"dev:simulator": {
"developmentClient": true,
"distribution": "internal",
"android": { "image": "latest" },
"ios": { "simulator": true, "image": "latest" },
"environment": "development",
"env": { "APP_ENV": "dev" },
"channel": "dev"
},
"dev": {
"developmentClient": false,
"distribution": "internal",
"android": { "image": "latest" },
"ios": { "image": "latest" },
"environment": "development",
"env": { "APP_ENV": "dev" },
"channel": "dev"
},
"test": {
"distribution": "internal",
"android": { "image": "latest" },
"ios": { "image": "latest" },
"environment": "preview",
"env": { "APP_ENV": "test" },
"channel": "test"
},
"prod-internal": {
"distribution": "internal",
"android": { "image": "latest" },
"ios": { "image": "latest" },
"autoIncrement": false,
"environment": "production",
"env": { "APP_ENV": "prod" },
"channel": "prod-internal"
},
"prod": {
"distribution": "store",
"android": { "image": "latest" },
"ios": { "image": "latest" },
"autoIncrement": true,
"environment": "production",
"env": { "APP_ENV": "prod" },
"channel": "prod"
}
},
"submit": {
"prod": {
"android": { "track": "internal" },
"ios": {
"bundleIdentifier": "com.taito.template",
"appleTeamId": "EPATC4S9N2",
"ascAppId": "6723883086"
}
}
}
}