-
Notifications
You must be signed in to change notification settings - Fork 0
/
appcenter-build-config.json
65 lines (65 loc) · 1.73 KB
/
appcenter-build-config.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
{
"ios": {
"trigger": "manual",
"testEnabled": false,
"signed": false,
"environmentVariables": [
{ "name": "CODE_PUSH_KEY", "value": "" },
{ "name": "IS_DEV_APP", "value": false },
{ "name": "SUPPORTS_MOBILE_TOOLKIT", "value": false }
],
"toolsets": {
"xcode": {
"xcodeVersion": "15.1 Preview",
"automaticSigning": false,
"projectOrWorkspacePath": "ios/NativeTemplate.xcworkspace",
"podfilePath": "ios/Podfile",
"scheme": "nativeTemplate"
},
"javascript": {
"packageJsonPath": "package.json",
"runTests": false,
"nodeVersion": "18.x"
},
"buildscripts": {
"package.json": {
"postClone": "appcenter-post-clone.sh",
"preBuild": "appcenter-pre-build.sh"
}
}
}
},
"android": {
"trigger": "manual",
"testEnabled": false,
"signed": false,
"environmentVariables": [
{ "name": "CODE_PUSH_KEY", "value": "" },
{ "name": "IS_DEV_APP", "value": false },
{ "name": "SUPPORTS_MOBILE_TOOLKIT", "value": false },
{ "name": "JAVA_HOME", "value": "$(JAVA_HOME_17_X64)" }
],
"toolsets": {
"android": {
"module": "app",
"buildVariant": "appstoreDebug",
"isRoot": false,
"runTests": false,
"runLint": false,
"automaticSigning": false,
"gradleWrapperPath": "android/gradlew"
},
"javascript": {
"packageJsonPath": "package.json",
"runTests": false,
"nodeVersion": "18.x"
},
"buildscripts": {
"package.json": {
"postClone": "appcenter-post-clone.sh",
"preBuild": "appcenter-pre-build.sh"
}
}
}
}
}