-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patheas.json
More file actions
53 lines (53 loc) · 1.1 KB
/
eas.json
File metadata and controls
53 lines (53 loc) · 1.1 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
{
"cli": {
"version": ">= 10.2.0"
},
"build": {
"development-simulator": {
"developmentClient": true,
"distribution": "internal",
"ios": {
"simulator": true
},
"env": {
"GOOGLE_MAPS_API_KEY": "${GOOGLE_MAPS_API_KEY}"
}
},
"development": {
"developmentClient": true,
"distribution": "internal",
"ios": {
"simulator": false
},
"android": {
"buildType": "apk"
},
"env": {
"GOOGLE_MAPS_API_KEY": "${GOOGLE_MAPS_API_KEY}",
"EXPO_PROJECT_ID": "${EXPO_PROJECT_ID}"
}
},
"preview": {
"extends": "production",
"distribution": "internal"
},
"production": {
"node": "20.15.0",
"env": {
"GOOGLE_MAPS_API_KEY": "${GOOGLE_MAPS_API_KEY}",
"EXPO_PROJECT_ID": "${EXPO_PROJECT_ID}"
},
"ios": {
"simulator": true,
"image": "latest",
"autoIncrement": "version"
},
"android": {
"gradleCommand": ":app:bundleRelease"
}
}
},
"submit": {
"production": {}
}
}