-
Notifications
You must be signed in to change notification settings - Fork 7
/
build-profile.json5
76 lines (76 loc) · 1.62 KB
/
build-profile.json5
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
{
"app": {
"products": [
{
"name": "default",
"signingConfig": "default",
"compatibleSdkVersion": "5.0.0(12)",
"runtimeOS": "HarmonyOS",
"buildOption": {
// "nativeCompiler": "BiSheng",
}
}
],
"buildModeSet": [
{
"name": "debug"
},
{
"name": "release"
}
],
"signingConfigs": [
{
"name": "default",
"type": "HarmonyOS",
"material": {
"storePassword": "0000001D0B4CB13D1A547A0F2FF91DA382162D9006D2102203C7A17AC2BAAE459BD1DA8FA84240C2169CBFCA02",
"certpath": "./signing/Homogram_Debug.cer",
"keyAlias": "keystore",
"keyPassword": "0000001DA32D34919F41359B0CD97331538758E70FC5BB327E35EDCBA4202D3A493649B532EA4FE31DF0DB7B74",
"profile": "./signing/homogram_debug.p7b",
"signAlg": "SHA256withECDSA",
"storeFile": "./signing/keystore.p12"
}
}
]
},
"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"
]
}
]
}
]
}