-
Notifications
You must be signed in to change notification settings - Fork 35
/
eas.json
68 lines (68 loc) · 1.43 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
64
65
66
67
68
{
"cli": {
"version": ">= 3.9.2",
"appVersionSource": "remote"
},
"build": {
"base": {
"resourceClass": "large",
"node": "21.2.0",
"android": {
"image": "ubuntu-22.04-jdk-17-ndk-r21e"
},
"env": {
"DAIMO_PASSKEY_DOMAIN": "daimo.com"
}
},
"sim": {
"extends": "base",
"ios": {
"buildConfiguration": "Debug",
"simulator": true
},
"env": {
"DAIMO_APP_VARIANT": "sim"
}
},
"dev": {
"extends": "base",
"distribution": "internal",
"developmentClient": true,
"env": {
"DAIMO_APP_VARIANT": "dev"
}
},
"maestro": {
"extends": "base",
"distribution": "internal",
"ios": {
"simulator": true
},
"env": {
"DAIMO_APP_API_URL_MAINNET": "https://api.daimo.xyz",
"DAIMO_APP_API_URL_TESTNET": "https://api-stage.daimo.xyz",
"DAIMO_APP_VARIANT": "maestro"
}
},
"production": {
"extends": "base",
"autoIncrement": true,
"env": {
"DAIMO_APP_API_URL_MAINNET": "https://api.daimo.xyz",
"DAIMO_APP_API_URL_TESTNET": "https://api-stage.daimo.xyz",
"DAIMO_APP_VARIANT": "prod"
}
}
},
"submit": {
"production": {
"ios": {
"ascAppId": "6459700343",
"companyName": "Daimo, Inc"
},
"android": {
"track": "internal"
}
}
}
}