forked from EvanBacon/pillar-valley
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eas.json
56 lines (55 loc) · 1.34 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
{
"cli": {
"version": ">= 2.0.0",
"appVersionSource": "remote"
},
"build": {
"base": {
"ios": {
"resourceClass": "large"
},
"channel": "default",
"cache": {
"key": "welp"
},
"autoIncrement": true,
"env": {
"EXPO_PUBLIC_AD_MOB_UNIT_ID_IOS": "ca-app-pub-2312569320461549/2517428180",
"EXPO_PUBLIC_AD_MOB_UNIT_ID_ANDROID": "ca-app-pub-2312569320461549/9830096940",
"NODE_ENV": "production"
// "EAS_BUILD_DISABLE_NPM_CACHE": "1",
// "EAS_BUILD_DISABLE_COCOAPODS_CACHE": "1"
// "NVM_NODEJS_ORG_MIRROR": "https://nodejs.raccoon-tw.dev/release"
}
},
"development": {
"extends": "base",
"distribution": "internal",
"android": {
"gradleCommand": ":app:assembleDebug"
},
"ios": {
"buildConfiguration": "Debug"
},
"env": {
"EXPO_PUBLIC_AD_MOB_UNIT_ID_IOS": "ca-app-pub-3940256099942544/1712485313",
"EXPO_PUBLIC_AD_MOB_UNIT_ID_ANDROID": "ca-app-pub-3940256099942544/5224354917",
"NODE_ENV": "development"
}
},
"preview": {
"extends": "base",
"distribution": "internal"
},
"production": {
"extends": "base"
}
},
"submit": {
"production": {
"ios": {
"ascAppId": "1336398804"
}
}
}
}