-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheas.json
50 lines (50 loc) · 1.31 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
{
"cli": {
"version": ">=7.0.0",
"requireCommit": true
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal",
/**
* Environment variables defined in your eas.json build profile will be used when evaluating your app.config.js
* when running eas build and will be available to all steps of the build process on the EAS Build server
*/
"env": {
"APP_VARIANT": "development",
"EXPO_PUBLIC_APP_TITLE": "Expo App (Dev)",
"EXPO_PUBLIC_API_BASE_URL": "https://dummyjson.com"
}
},
"development-simulator": {
"extends": "development",
"ios": {
"simulator": true
}
},
"test": {
"distribution": "internal",
"env": {
"APP_VARIANT": "test",
"EXPO_PUBLIC_APP_TITLE": "Expo App (Test)",
"EXPO_PUBLIC_API_BASE_URL": "https://dummyjson.com"
}
},
"production": {
"autoIncrement": true,
"env": {
"APP_VARIANT": "production",
"EXPO_PUBLIC_APP_TITLE": "Expo App",
"EXPO_PUBLIC_API_BASE_URL": "https://dummyjson.com"
}
}
},
"submit": {
"production": {
// "android": {
// "serviceAccountKeyPath": "./" // git ignored generatedservice account from google cloud
// }
}
}
}