-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy patheas.json
More file actions
62 lines (62 loc) · 1.38 KB
/
eas.json
File metadata and controls
62 lines (62 loc) · 1.38 KB
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
{
"cli": {
"version": ">= 14.3.1",
"appVersionSource": "remote"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal",
"credentialsSource": "local",
"node": "22.12.0",
"ios": {
"image": "macos-sequoia-15.6-xcode-26.0"
}
},
"preview": {
"autoIncrement": true,
"credentialsSource": "local",
"node": "22.12.0",
"ios": {
"image": "macos-sequoia-15.6-xcode-26.0"
}
},
"preview-apk": {
"extends": "preview",
"android": {
"buildType": "apk"
}
},
"production": {
"autoIncrement": true,
"credentialsSource": "local",
"node": "22.12.0",
"ios": {
"scheme": "pearpassappmobile",
"image": "macos-sequoia-15.6-xcode-26.0"
}
},
"production-apk": {
"extends": "production",
"android": {
"buildType": "apk"
}
}
},
"submit": {
"production": {
"android": {
"track": "internal",
"releaseStatus": "completed",
"serviceAccountKeyPath": "google-service-account.json"
},
"ios": {
"ascAppId": "6752954830",
"ascApiKeyPath": "apple-asc-api-key.p8",
"ascApiKeyIssuerId": "2067dae8-140d-4016-9a2b-d6ea80a20708",
"ascApiKeyId": "S3AG2UXSC5",
"appleTeamId": "43QFHSJ5QR"
}
}
}
}