-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild-profile.json5
95 lines (95 loc) · 2.13 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
// app的构建配置
"app": {
//签名配置
"signingConfigs": [
{
"name": "default",
"type": "HarmonyOS",
"material": {
"certpath": "C:\\Users\\zyz\\.ohos\\config\\default_HMDemo_i5yHT0lu8Bugf7Se0a-mWm67_DsSdIYAWNVACnIC98c=.cer",
"storePassword": "0000001B17961DDECEBACEACD9CAA1E45CB0BEF5D5A935C253F2AB99644951676ED1B6F102D2B5AD8BCBA2",
"keyAlias": "debugKey",
"keyPassword": "0000001B72605A837A1D1827D656F3D157F771A9B6DEC8B264626F1EFBBDA8FF65464F416F4B5C7F9FA84F",
"profile": "C:\\Users\\zyz\\.ohos\\config\\default_HMDemo_i5yHT0lu8Bugf7Se0a-mWm67_DsSdIYAWNVACnIC98c=.p7b",
"signAlg": "SHA256withECDSA",
"storeFile": "C:\\Users\\zyz\\.ohos\\config\\default_HMDemo_i5yHT0lu8Bugf7Se0a-mWm67_DsSdIYAWNVACnIC98c=.p12"
}
}
],
//产品配置
"products": [
{
"name": "default",
"signingConfig": "default",
"compatibleSdkVersion": "5.0.0(12)",
"runtimeOS": "HarmonyOS",
}
],
//构建类型集合
"buildModeSet": [
{
"name": "debug",
},
{
"name": "release"
}
]
},
//组件集合
"modules": [
// app组件
{
// 组件名称
"name": "app",
// 组件源码位置
"srcPath": "./app",
// 构建目标
"targets": [
{
"name": "default",
"applyToProducts": [
"default"
]
}
]
},
//shareLib组件
{
"name": "common_ui",
"srcPath": "./common_ui",
"targets": [
{
"name": "default",
"applyToProducts": [
"default"
]
}
]
},
{
"name": "base",
"srcPath": "./base",
"targets": [
{
"name": "default",
"applyToProducts": [
"default"
]
}
]
},
{
"name": "hmcalculate",
"srcPath": "./hmcalculate",
"targets": [
{
"name": "default",
"applyToProducts": [
"default"
]
}
]
}
]
}