-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathbuild-profile.json5
More file actions
77 lines (77 loc) · 1.65 KB
/
build-profile.json5
File metadata and controls
77 lines (77 loc) · 1.65 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"app": {
"products": [
{
"name": "default",
"signingConfig": "default",
"compatibleSdkVersion": "5.1.0(18)",
"runtimeOS": "HarmonyOS",
"buildOption": {
// "nativeCompiler": "BiSheng",
},
"targetSdkVersion": "5.1.0(18)"
}
],
"buildModeSet": [
{
"name": "debug"
},
{
"name": "release"
}
],
"signingConfigs": [
{
"name": "default",
"type": "HarmonyOS",
"material": {
"storeFile": "./signing/keystore.p12",
"storePassword": "0000001DAF9C8162E04A0CBCD76D72CED2F9728E2F7A460578E6782C442D99B5C2E5B1A1D620BDE5E4DB9DCA14",
"keyAlias": "keystore",
"keyPassword": "0000001D961FAF5A8C4E304042DB9205FDDCDF9202D10A77E207AFEFD87AD0F159EDA9FAA8752640B4F67ED3DC",
"signAlg": "SHA256withECDSA",
"profile": "./signing/homogram_debug.p7b",
"certpath": "./signing/Homogram_Debug.cer"
}
}
]
},
"modules": [
{
"name": "phone",
"srcPath": "./products/phone",
"targets": [
{
"name": "default",
"applyToProducts": [
"default"
]
}
]
},
{
"name": "home",
"srcPath": "./features/home",
"targets": [
{
"name": "default",
"applyToProducts": [
"default"
]
}
]
},
{
"name": "base",
"srcPath": "./common/base",
"targets": [
{
"name": "default",
"applyToProducts": [
"default"
]
}
]
}
]
}